diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2000-09-12 17:25:57 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2000-09-12 17:25:57 +0000 |
commit | a57a13fcbab3c4999286c13e316263afc4b6bd58 (patch) | |
tree | 1e14cf6625710a1efe0340cfd9041bce8e8b1738 /sys/kern | |
parent | 24abf6011f433b440b2f1476b1a4c96b68a758a9 (diff) |
sys_getsid() and sys_getpgid() return pid_t, not int (though pid_t *is*
an int so this didn't break anything).
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/syscalls.master | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master index 2452296943e..7d4cb0c94bb 100644 --- a/sys/kern/syscalls.master +++ b/sys/kern/syscalls.master @@ -1,4 +1,4 @@ -; $OpenBSD: syscalls.master,v 1.41 2000/06/22 22:41:19 mickey Exp $ +; $OpenBSD: syscalls.master,v 1.42 2000/09/12 17:25:56 millert Exp $ ; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $ ; @(#)syscalls.master 8.2 (Berkeley) 1/13/94 @@ -384,7 +384,7 @@ 205 STD { int sys_undelete(const char *path); } 206 STD { int sys_futimes(int fd, \ const struct timeval *tptr); } -207 STD { int sys_getpgid(pid_t pid); } +207 STD { pid_t sys_getpgid(pid_t pid); } 208 STD { int sys_xfspioctl(int operation, char *a_pathP, \ int a_opcode, struct ViceIoctl *a_paramsP, \ int a_followSymlinks); } @@ -488,7 +488,7 @@ unsigned long nfds, int timeout); } 253 STD { int sys_issetugid(void); } 254 STD { int sys_lchown(const char *path, uid_t uid, gid_t gid); } -255 STD { int sys_getsid(pid_t pid); } +255 STD { pid_t sys_getsid(pid_t pid); } 256 STD { int sys_msync(void *addr, size_t len, int flags); } #ifdef SYSVSEM 257 STD { int sys___semctl(int semid, int semnum, int cmd, \ |