During the system call table format change adding audit record event
fields for each system call, I missed two system call files because they weren't named syscalls.master. Catch up with this last two, mapping the system calls to the NULL event for now. Spotted by: jhb Approved by: re (scottl)
This commit is contained in:
parent
19042f9cce
commit
e099829817
@ -8,26 +8,30 @@
|
||||
#include <i386/ibcs2/ibcs2_proto.h>
|
||||
#include <i386/ibcs2/ibcs2_xenix.h>
|
||||
|
||||
0 UNIMPL nosys
|
||||
1 UNIMPL isc_setostype
|
||||
2 NOPROTO { int ibcs2_rename(char *from, char *to); }
|
||||
3 NOPROTO { int ibcs2_sigaction(int sig, struct ibcs2_sigaction *act, \
|
||||
struct ibcs2_sigaction *oact); }
|
||||
4 NOPROTO { int ibcs2_sigprocmask(int how, ibcs2_sigset_t *set, \
|
||||
ibcs2_sigset_t *oset); }
|
||||
5 NOPROTO { int ibcs2_sigpending(ibcs2_sigset_t *mask); }
|
||||
6 NOPROTO { int getgroups(u_int gidsetsize, gid_t *gidset); }
|
||||
7 NOPROTO { int setgroups(u_int gidsetsize, gid_t *gidset); }
|
||||
8 NOPROTO { int ibcs2_pathconf(char *path, int name); }
|
||||
9 NOPROTO { int ibcs2_fpathconf(int fd, int name); }
|
||||
10 UNIMPL nosys
|
||||
11 NOPROTO { int ibcs2_wait(int a1, int a2, int a3); }
|
||||
12 NOPROTO { int setsid(void); }
|
||||
13 NOPROTO { pid_t getpid(void); }
|
||||
14 UNIMPL isc_adduser
|
||||
15 UNIMPL isc_setuser
|
||||
16 MNOPROTO { int ibcs2_sysconf(int name); }
|
||||
17 NOPROTO { int ibcs2_sigsuspend(ibcs2_sigset_t *mask); }
|
||||
18 NOPROTO { int ibcs2_symlink(char *path, char *link); }
|
||||
19 NOPROTO { int ibcs2_readlink(char *path, char *buf, int count); }
|
||||
20 UNIMPL isc_getmajor
|
||||
0 AUE_NULL UNIMPL nosys
|
||||
1 AUE_NULL UNIMPL isc_setostype
|
||||
2 AUE_NULL NOPROTO { int ibcs2_rename(char *from, char *to); }
|
||||
3 AUE_NULL NOPROTO { int ibcs2_sigaction(int sig, \
|
||||
struct ibcs2_sigaction *act, \
|
||||
struct ibcs2_sigaction *oact); }
|
||||
4 AUE_NULL NOPROTO { int ibcs2_sigprocmask(int how, \
|
||||
ibcs2_sigset_t *set, ibcs2_sigset_t *oset); }
|
||||
5 AUE_NULL NOPROTO { int ibcs2_sigpending(ibcs2_sigset_t *mask); }
|
||||
6 AUE_NULL NOPROTO { int getgroups(u_int gidsetsize, \
|
||||
gid_t *gidset); }
|
||||
7 AUE_NULL NOPROTO { int setgroups(u_int gidsetsize, \
|
||||
gid_t *gidset); }
|
||||
8 AUE_NULL NOPROTO { int ibcs2_pathconf(char *path, int name); }
|
||||
9 AUE_NULL NOPROTO { int ibcs2_fpathconf(int fd, int name); }
|
||||
10 AUE_NULL UNIMPL nosys
|
||||
11 AUE_NULL NOPROTO { int ibcs2_wait(int a1, int a2, int a3); }
|
||||
12 AUE_NULL NOPROTO { int setsid(void); }
|
||||
13 AUE_NULL NOPROTO { pid_t getpid(void); }
|
||||
14 AUE_NULL UNIMPL isc_adduser
|
||||
15 AUE_NULL UNIMPL isc_setuser
|
||||
16 AUE_NULL MNOPROTO { int ibcs2_sysconf(int name); }
|
||||
17 AUE_NULL NOPROTO { int ibcs2_sigsuspend(ibcs2_sigset_t *mask); }
|
||||
18 AUE_NULL NOPROTO { int ibcs2_symlink(char *path, char *link); }
|
||||
19 AUE_NULL NOPROTO { int ibcs2_readlink(char *path, char *buf, \
|
||||
int count); }
|
||||
20 AUE_NULL UNIMPL isc_getmajor
|
||||
|
@ -7,64 +7,71 @@
|
||||
#include <i386/ibcs2/ibcs2_signal.h>
|
||||
#include <i386/ibcs2/ibcs2_xenix.h>
|
||||
|
||||
0 UNIMPL nosys
|
||||
1 UNIMPL xenix_xlocking
|
||||
2 UNIMPL xenix_creatsem
|
||||
3 UNIMPL xenix_opensem
|
||||
4 UNIMPL xenix_sigsem
|
||||
5 UNIMPL xenix_waitsem
|
||||
6 UNIMPL xenix_nbwaitsem
|
||||
7 STD { int xenix_rdchk(int fd); }
|
||||
8 UNIMPL nosys
|
||||
9 UNIMPL nosys
|
||||
10 STD { int xenix_chsize(int fd, long size); }
|
||||
11 STD { int xenix_ftime(struct timeb *tp); }
|
||||
12 STD { int xenix_nap(int millisec); }
|
||||
13 UNIMPL xenix_sdget
|
||||
14 UNIMPL xenix_sdfree
|
||||
15 UNIMPL xenix_sdenter
|
||||
16 UNIMPL xenix_sdleave
|
||||
17 UNIMPL xenix_sdgetv
|
||||
18 UNIMPL xenix_sdwaitv
|
||||
19 UNIMPL nosys
|
||||
20 UNIMPL nosys
|
||||
21 STD { int xenix_scoinfo(void); }
|
||||
22 UNIMPL nosys
|
||||
23 UNIMPL nosys
|
||||
24 UNIMPL nosys
|
||||
25 UNIMPL nosys
|
||||
26 UNIMPL nosys
|
||||
27 UNIMPL nosys
|
||||
28 UNIMPL nosys
|
||||
29 UNIMPL nosys
|
||||
30 UNIMPL nosys
|
||||
31 UNIMPL nosys
|
||||
32 UNIMPL xenix_proctl
|
||||
33 UNIMPL xenix_execseg
|
||||
34 UNIMPL xenix_unexecseg
|
||||
35 UNIMPL nosys
|
||||
36 NOPROTO { int select(u_int nd, fd_set *in, fd_set *ou, fd_set *ex, \
|
||||
struct timeval *tv); }
|
||||
37 STD { int xenix_eaccess(char *path, int flags); }
|
||||
38 UNIMPL xenix_paccess
|
||||
39 STD { int ibcs2_sigaction(int sig, struct ibcs2_sigaction *act, \
|
||||
struct ibcs2_sigaction *oact); }
|
||||
40 STD { int ibcs2_sigprocmask(int how, ibcs2_sigset_t *set, \
|
||||
ibcs2_sigset_t *oset); }
|
||||
41 STD { int ibcs2_sigpending(ibcs2_sigset_t *mask); }
|
||||
42 STD { int ibcs2_sigsuspend(ibcs2_sigset_t *mask); }
|
||||
43 STD { int ibcs2_getgroups(int gidsetsize, ibcs2_gid_t *gidset); }
|
||||
44 STD { int ibcs2_setgroups(int gidsetsize, ibcs2_gid_t *gidset); }
|
||||
45 MSTD { int ibcs2_sysconf(int name); }
|
||||
46 STD { int ibcs2_pathconf(char *path, int name); }
|
||||
47 STD { int ibcs2_fpathconf(int fd, int name); }
|
||||
48 STD { int ibcs2_rename(char *from, char *to); }
|
||||
49 UNIMPL nosys
|
||||
50 STD { int xenix_utsname(long addr); }
|
||||
51 UNIMPL nosys
|
||||
52 UNIMPL nosys
|
||||
53 UNIMPL nosys
|
||||
54 UNIMPL nosys
|
||||
55 NOPROTO { int getitimer(u_int which, struct itimerval *itv); }
|
||||
56 NOPROTO { int setitimer(u_int which, struct itimerval *itv, \
|
||||
struct itimerval *otv); }
|
||||
0 AUE_NULL UNIMPL nosys
|
||||
1 AUE_NULL UNIMPL xenix_xlocking
|
||||
2 AUE_NULL UNIMPL xenix_creatsem
|
||||
3 AUE_NULL UNIMPL xenix_opensem
|
||||
4 AUE_NULL UNIMPL xenix_sigsem
|
||||
5 AUE_NULL UNIMPL xenix_waitsem
|
||||
6 AUE_NULL UNIMPL xenix_nbwaitsem
|
||||
7 AUE_NULL STD { int xenix_rdchk(int fd); }
|
||||
8 AUE_NULL UNIMPL nosys
|
||||
9 AUE_NULL UNIMPL nosys
|
||||
10 AUE_NULL STD { int xenix_chsize(int fd, long size); }
|
||||
11 AUE_NULL STD { int xenix_ftime(struct timeb *tp); }
|
||||
12 AUE_NULL STD { int xenix_nap(int millisec); }
|
||||
13 AUE_NULL UNIMPL xenix_sdget
|
||||
14 AUE_NULL UNIMPL xenix_sdfree
|
||||
15 AUE_NULL UNIMPL xenix_sdenter
|
||||
16 AUE_NULL UNIMPL xenix_sdleave
|
||||
17 AUE_NULL UNIMPL xenix_sdgetv
|
||||
18 AUE_NULL UNIMPL xenix_sdwaitv
|
||||
19 AUE_NULL UNIMPL nosys
|
||||
20 AUE_NULL UNIMPL nosys
|
||||
21 AUE_NULL STD { int xenix_scoinfo(void); }
|
||||
22 AUE_NULL UNIMPL nosys
|
||||
23 AUE_NULL UNIMPL nosys
|
||||
24 AUE_NULL UNIMPL nosys
|
||||
25 AUE_NULL UNIMPL nosys
|
||||
26 AUE_NULL UNIMPL nosys
|
||||
27 AUE_NULL UNIMPL nosys
|
||||
28 AUE_NULL UNIMPL nosys
|
||||
29 AUE_NULL UNIMPL nosys
|
||||
30 AUE_NULL UNIMPL nosys
|
||||
31 AUE_NULL UNIMPL nosys
|
||||
32 AUE_NULL UNIMPL xenix_proctl
|
||||
33 AUE_NULL UNIMPL xenix_execseg
|
||||
34 AUE_NULL UNIMPL xenix_unexecseg
|
||||
35 AUE_NULL UNIMPL nosys
|
||||
36 AUE_NULL NOPROTO { int select(u_int nd, fd_set *in, \
|
||||
fd_set *ou, fd_set *ex, \
|
||||
struct timeval *tv); }
|
||||
37 AUE_NULL STD { int xenix_eaccess(char *path, int flags); }
|
||||
38 AUE_NULL UNIMPL xenix_paccess
|
||||
39 AUE_NULL STD { int ibcs2_sigaction(int sig, \
|
||||
struct ibcs2_sigaction *act, \
|
||||
struct ibcs2_sigaction *oact); }
|
||||
40 AUE_NULL STD { int ibcs2_sigprocmask(int how, \
|
||||
ibcs2_sigset_t *set, \
|
||||
ibcs2_sigset_t *oset); }
|
||||
41 AUE_NULL STD { int ibcs2_sigpending(ibcs2_sigset_t *mask); }
|
||||
42 AUE_NULL STD { int ibcs2_sigsuspend(ibcs2_sigset_t *mask); }
|
||||
43 AUE_NULL STD { int ibcs2_getgroups(int gidsetsize, \
|
||||
ibcs2_gid_t *gidset); }
|
||||
44 AUE_NULL STD { int ibcs2_setgroups(int gidsetsize, \
|
||||
ibcs2_gid_t *gidset); }
|
||||
45 AUE_NULL MSTD { int ibcs2_sysconf(int name); }
|
||||
46 AUE_NULL STD { int ibcs2_pathconf(char *path, int name); }
|
||||
47 AUE_NULL STD { int ibcs2_fpathconf(int fd, int name); }
|
||||
48 AUE_NULL STD { int ibcs2_rename(char *from, char *to); }
|
||||
49 AUE_NULL UNIMPL nosys
|
||||
50 AUE_NULL STD { int xenix_utsname(long addr); }
|
||||
51 AUE_NULL UNIMPL nosys
|
||||
52 AUE_NULL UNIMPL nosys
|
||||
53 AUE_NULL UNIMPL nosys
|
||||
54 AUE_NULL UNIMPL nosys
|
||||
55 AUE_NULL NOPROTO { int getitimer(u_int which, \
|
||||
struct itimerval *itv); }
|
||||
56 AUE_NULL NOPROTO { int setitimer(u_int which, \
|
||||
struct itimerval *itv, \
|
||||
struct itimerval *otv); }
|
||||
|
Loading…
x
Reference in New Issue
Block a user