Evc_set_ccaps(): added
[util-vserver.git] / util-vserver / ensc_wrappers / wrappers-vserver.hc
1 // $Id$    --*- c++ -*--
2
3 // Copyright (C) 2004 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; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifndef H_ENSC_IN_WRAPPERS_H
20 #  error wrappers_handler.hc can not be used in this way
21 #endif
22
23 #include <vserver.h>
24
25 inline static WRAPPER_DECL xid_t
26 Evc_new_s_context(xid_t ctx, unsigned int remove_cap, unsigned int flags)
27 {
28   register xid_t        res = vc_new_s_context(ctx,remove_cap,flags);
29   FatalErrnoError(res==VC_NOCTX, "vc_new_s_context()");
30   return res;
31 }
32
33 inline static WRAPPER_DECL xid_t
34 Evc_get_task_xid(pid_t pid)
35 {
36   register xid_t        res = vc_get_task_xid(pid);
37   FatalErrnoError(res==VC_NOCTX, "vc_get_task_xid()");
38   return res;
39 }
40
41 inline static WRAPPER_DECL xid_t
42 Evc_create_context(xid_t xid)
43 {
44   register xid_t        res = vc_create_context(xid);
45   FatalErrnoError(res==VC_NOCTX, "vc_create_context()");
46   return res;
47 }
48
49 inline static WRAPPER_DECL void
50 Evc_migrate_context(xid_t xid)
51 {
52   FatalErrnoError(vc_migrate_context(xid)==-1, "vc_migrate_context()");
53 }
54
55 inline static WRAPPER_DECL void
56 Evc_get_flags(xid_t xid, struct vc_ctx_flags *flags)
57 {
58   FatalErrnoError(vc_get_flags(xid, flags)==-1, "vc_get_flags()");
59 }
60
61 inline static WRAPPER_DECL void
62 Evc_set_flags(xid_t xid, struct vc_ctx_flags const *flags)
63 {
64   FatalErrnoError(vc_set_flags(xid, flags)==-1, "vc_set_flags()");
65 }
66
67 inline static WRAPPER_DECL void
68 Evc_set_vhi_name(xid_t xid, vc_uts_type type,
69                  char const *val, size_t len)
70 {
71   FatalErrnoError(vc_set_vhi_name(xid,type,val,len)==-1, "vc_set_vhi_name()");
72 }
73
74 inline static WRAPPER_DECL void
75 Evc_get_ccaps(xid_t xid, struct vc_ctx_caps *caps)
76 {
77   FatalErrnoError(vc_get_ccaps(xid, caps)==-1, "vc_get_ccaps()");
78 }
79
80 inline static WRAPPER_DECL void
81 Evc_set_ccaps(xid_t xid, struct vc_ctx_caps const *caps)
82 {
83   FatalErrnoError(vc_set_ccaps(xid, caps)==-1, "vc_set_ccaps()");
84 }