summaryrefslogtreecommitdiff
path: root/sys/kern/syscalls.master
diff options
context:
space:
mode:
authorDale Rahn <drahn@cvs.openbsd.org>2005-07-03 20:14:04 +0000
committerDale Rahn <drahn@cvs.openbsd.org>2005-07-03 20:14:04 +0000
commitb5bf3768ac38431395a07f41869fa599535c9636 (patch)
treef3533d026a629b7688eabcd377c92ede86245586 /sys/kern/syscalls.master
parent3ae48c77e65290a7ddf1e1154ccb0b9645a5ffaf (diff)
Extended Attributes was a piece to get to ACLs, however ACLs have not
been worked on, so EA is pointless. Also the code is not enabled in GENERIC so it is not being tested or maintained.
Diffstat (limited to 'sys/kern/syscalls.master')
-rw-r--r--sys/kern/syscalls.master24
1 files changed, 1 insertions, 23 deletions
diff --git a/sys/kern/syscalls.master b/sys/kern/syscalls.master
index 5afb67aa9bd..5c6e0efaee0 100644
--- a/sys/kern/syscalls.master
+++ b/sys/kern/syscalls.master
@@ -1,4 +1,4 @@
-; $OpenBSD: syscalls.master,v 1.77 2005/06/17 20:39:14 millert Exp $
+; $OpenBSD: syscalls.master,v 1.78 2005/07/03 20:13:59 drahn Exp $
; $NetBSD: syscalls.master,v 1.32 1996/04/23 10:24:21 mycroft Exp $
; @(#)syscalls.master 8.2 (Berkeley) 1/13/94
@@ -539,27 +539,6 @@
271 STD { int sys_mlockall(int flags); }
272 STD { int sys_munlockall(void); }
273 STD { int sys_getpeereid(int fdes, uid_t *euid, gid_t *egid); }
-#ifdef UFS_EXTATTR
-274 STD { int sys_extattrctl(const char *path, int cmd, \
- const char *filename, int attrnamespace, \
- const char *attrname); }
-275 STD { int sys_extattr_set_file(const char *path, \
- int attrnamespace, const char *attrname, \
- const void *data, size_t nbytes); }
-276 STD { ssize_t sys_extattr_get_file(const char *path, \
- int attrnamespace, const char *attrname, \
- void *data, size_t nbytes); }
-277 STD { int sys_extattr_delete_file(const char *path, \
- int attrnamespace, const char *attrname); }
-278 STD { int sys_extattr_set_fd(int fd, int attrnamespace, \
- const char *attrname, const void *data, \
- size_t nbytes); }
-279 STD { ssize_t sys_extattr_get_fd(int fd, \
- int attrnamespace, const char *attrname, \
- void *data, size_t nbytes); }
-280 STD { int sys_extattr_delete_fd(int fd, int attrnamespace, \
- const char *attrname); }
-#else
274 UNIMPL sys_extattrctl
275 UNIMPL sys_extattr_set_file
276 UNIMPL sys_extattr_get_file
@@ -567,7 +546,6 @@
278 UNIMPL sys_extattr_set_fd
279 UNIMPL sys_extattr_get_fd
280 UNIMPL sys_extattr_delete_fd
-#endif
281 STD { int sys_getresuid(uid_t *ruid, uid_t *euid, \
uid_t *suid); }
282 STD { int sys_setresuid(uid_t ruid, uid_t euid, \