summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/os/sysent.c
diff options
context:
space:
mode:
authorcasper <none@none>2007-05-25 05:43:42 -0700
committercasper <none@none>2007-05-25 05:43:42 -0700
commitf48205be61a214698b763ff550ab9e657525104c (patch)
treebc63168b8468284765bb770eb48473b7a0bf980e /usr/src/uts/common/os/sysent.c
parent7387092aa96cd872b317dfab3fee34a96c681f3e (diff)
downloadillumos-gate-f48205be61a214698b763ff550ab9e657525104c.tar.gz
PSARC 2007/064 Unified POSIX and Windows Credentials for Solaris
4994017 data structure sharing between rpcbind and libnsl leads to accidents 6549510 Need the ability to store SIDs in the Solaris cred_t 6549515 PSARC 2007/064: uid_t and gid_t to become unsigned
Diffstat (limited to 'usr/src/uts/common/os/sysent.c')
-rw-r--r--usr/src/uts/common/os/sysent.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/src/uts/common/os/sysent.c b/usr/src/uts/common/os/sysent.c
index 233de3b873..7b767297f3 100644
--- a/usr/src/uts/common/os/sysent.c
+++ b/usr/src/uts/common/os/sysent.c
@@ -84,7 +84,6 @@ int gtty();
int hrtsys();
#endif /* __i386 || __amd64 */
int ioctl();
-int issetugid();
int kill();
int labelsys();
int link();
@@ -110,6 +109,7 @@ int setgid();
int setpgrp();
int setuid();
uintptr_t shmsys();
+uint64_t sidsys();
int ssig();
int sigprocmask();
int sigsuspend();
@@ -521,7 +521,7 @@ struct sysent sysent[NSYSCALL] =
/* 72 */ SYSENT_LOADABLE(), /* exacct */
/* 73 */ SYSENT_CI("getpagesizes", getpagesizes, 2),
/* 74 */ SYSENT_CI("rctlsys", rctlsys, 6),
- /* 75 */ SYSENT_CI("issetugid", issetugid, 0),
+ /* 75 */ SYSENT_2CI("sidsys", sidsys, 4),
/* 76 */ IF_LP64(
SYSENT_CI("fsat", fsat64, 6),
SYSENT_CI("fsat", fsat32, 6)),
@@ -922,7 +922,7 @@ struct sysent sysent32[NSYSCALL] =
/* 72 */ SYSENT_LOADABLE32(), /* exacct */
/* 73 */ SYSENT_CI("getpagesizes", getpagesizes32, 2),
/* 74 */ SYSENT_CI("rctlsys", rctlsys, 6),
- /* 75 */ SYSENT_CI("issetugid", issetugid, 0),
+ /* 75 */ SYSENT_2CI("sidsys", sidsys, 4),
/* 76 */ SYSENT_CI("fsat", fsat32, 6),
/* 77 */ SYSENT_CI("lwp_park", syslwp_park, 3),
/* 78 */ SYSENT_CI("sendfilev", sendfilev, 5),