Changeset View
Changeset View
Standalone View
Standalone View
sys/kern/syscalls.master
| Show First 20 Lines • Show All 151 Lines • ▼ Show 20 Lines | 5 AUE_OPEN_RWTC STD { | ||||
| } | } | ||||
| ; XXX should be { int open(const char *path, int flags, ...); } | ; XXX should be { int open(const char *path, int flags, ...); } | ||||
| ; but we're not ready for varargs. | ; but we're not ready for varargs. | ||||
| 6 AUE_CLOSE STD|CAPENABLED { | 6 AUE_CLOSE STD|CAPENABLED { | ||||
| int close( | int close( | ||||
| int fd | int fd | ||||
| ); | ); | ||||
| } | } | ||||
| 7 AUE_WAIT4 STD { | 7 AUE_WAIT4 STD|CAPENABLED { | ||||
| int wait4( | int wait4( | ||||
| int pid, | int pid, | ||||
| _Out_opt_ int *status, | _Out_opt_ int *status, | ||||
| int options, | int options, | ||||
| _Out_opt_ _Contains_long_timet_ struct rusage *rusage | _Out_opt_ _Contains_long_timet_ struct rusage *rusage | ||||
| ); | ); | ||||
| } | } | ||||
| 8 AUE_CREAT COMPAT { | 8 AUE_CREAT COMPAT { | ||||
| ▲ Show 20 Lines • Show All 3,169 Lines • Show Last 20 Lines | |||||