aboutsummaryrefslogtreecommitdiff
path: root/src/process.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-08-15 17:33:40 +0000
committerMike Buland <eichlan@xagasoft.com>2011-08-15 17:33:40 +0000
commitbc6952f06b9d1cff7417d3f71ce5a65704ebbb02 (patch)
tree88c4e4527669b258015c076a02ad0c084cba015a /src/process.h
parentbc9e6678f6b917f67317a2987866bf1787a3e076 (diff)
downloadlibbu++-bc6952f06b9d1cff7417d3f71ce5a65704ebbb02.tar.gz
libbu++-bc6952f06b9d1cff7417d3f71ce5a65704ebbb02.tar.bz2
libbu++-bc6952f06b9d1cff7417d3f71ce5a65704ebbb02.tar.xz
libbu++-bc6952f06b9d1cff7417d3f71ce5a65704ebbb02.zip
You can setgid now too.
Diffstat (limited to 'src/process.h')
-rw-r--r--src/process.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/process.h b/src/process.h
index f3d84b1..6295b49 100644
--- a/src/process.h
+++ b/src/process.h
@@ -40,12 +40,14 @@ namespace Bu
40 { 40 {
41 None = 0x00, 41 None = 0x00,
42 SetUid = 0x01, 42 SetUid = 0x01,
43 SetGid = 0x02,
43 }; 44 };
44 45
45 Options() : eFlags( None ) {} 46 Options() : eFlags( None ) {}
46 47
47 OptFlags eFlags; 48 int eFlags;
48 int iUid; 49 int iUid;
50 int iGid;
49 }; 51 };
50 52
51 Process( Flags eFlags, const char *sName, char *const argv[] ); 53 Process( Flags eFlags, const char *sName, char *const argv[] );