removed ctx_t typedef; this must be now done by each package
[util-vserver.git] / util-vserver / lib / vserver.h
1 // $Id$
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2, or (at your option)
8 // any later version.
9 //  
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //  
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 #ifndef H_VSERVER_SYSCALL_H
20 #define H_VSERVER_SYSCALL_H
21
22 #include <sys/types.h>
23 #include <unistd.h>
24
25 #define CTX_NOCTX       ((ctx_t)(-1))
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31 int call_new_s_context(int nbctx, int ctxs[], int remove_cap, int flags);
32 int call_set_ipv4root (unsigned long ip[], int nb,
33                        unsigned long bcast, unsigned long mask[]);
34 int call_chrootsafe (const char *dir);
35 int has_chrootsafe();
36 int call_set_ctxlimit (int res, long limit);
37
38 void    vserver_init();
39
40   ctx_t         getctx(pid_t pid);
41
42 #define getcctx()       (getctx(getpid()))
43
44 #ifdef __cplusplus
45 }
46 #endif
47
48 #endif