diff options
| author | Robert Watson <rwatson@FreeBSD.org> | 2006-10-28 17:38:54 +0000 |
|---|---|---|
| committer | Robert Watson <rwatson@FreeBSD.org> | 2006-10-28 17:38:54 +0000 |
| commit | 04b2fa41c8900c10e98dc7b74681070b04ae732d (patch) | |
| tree | 95c8e06954132396b169e2d6d66d72bd9851a152 /sys/compat | |
| parent | 684ff0d7875f7f6227905fc5f88028d03e4cde26 (diff) | |
Notes
Diffstat (limited to 'sys/compat')
| -rw-r--r-- | sys/compat/freebsd32/syscalls.master | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master index c69ee6ffe80f..cb4131e4190b 100644 --- a/sys/compat/freebsd32/syscalls.master +++ b/sys/compat/freebsd32/syscalls.master @@ -13,7 +13,7 @@ ; case where the event exists, but we don't want auditing, the ; event should be #defined to AUE_NULL in audit_kevents.h. ; type one of [M]STD, [M]OBSOL, [M]UNIMPL, [M]COMPAT, [M]CPT_NOA, -; [M]LIBCOMPAT, [M]NODEF, [M]NOARGS, [M]NOPROTO, [M]NOIMPL, +; [M]LIBCOMPAT, [M]NODEF, [M]NOARGS, [M]NOPROTO, [M]NOPROTO, ; [M]NOSTD ; name psuedo-prototype of syscall routine ; If one of the following alts is different, then all appear: @@ -734,13 +734,19 @@ const struct timespec *timeout); } 443 AUE_NULL MNOPROTO { int thr_wake(long id); } 444 AUE_MODUNLOAD MNOPROTO { int kldunloadf(int fileid, int flags); } -445 AUE_AUDIT UNIMPL audit -446 AUE_AUDITON UNIMPL auditon -447 AUE_GETAUID UNIMPL getauid -448 AUE_SETAUID UNIMPL setauid -449 AUE_GETAUDIT UNIMPL getaudit -450 AUE_SETAUDIT UNIMPL setaudit -451 AUE_GETAUDIT_ADDR UNIMPL getaudit_addr -452 AUE_SETAUDIT_ADDR UNIMPL setaudit_addr -453 AUE_AUDITCTL UNIMPL auditctl +445 AUE_AUDIT MNOPROTO { int audit(const void *record, \ + u_int length); } +446 AUE_AUDITON MNOPROTO { int auditon(int cmd, void *data, \ + u_int length); } +447 AUE_GETAUID MNOPROTO { int getauid(uid_t *auid); } +448 AUE_SETAUID MNOPROTO { int setauid(uid_t *auid); } +449 AUE_GETAUDIT MNOPROTO { int getaudit(struct auditinfo *auditinfo); } +450 AUE_SETAUDIT MNOPROTO { int setaudit(struct auditinfo *auditinfo); } +451 AUE_GETAUDIT_ADDR MNOPROTO { int getaudit_addr( \ + struct auditinfo_addr *auditinfo_addr, \ + u_int length); } +452 AUE_SETAUDIT_ADDR MNOPROTO { int setaudit_addr( \ + struct auditinfo_addr *auditinfo_addr, \ + u_int length); } +453 AUE_AUDITCTL MNOPROTO { int auditctl(char *path); } 454 AUE_NULL UNIMPL _umtx_op |
