Changeset View
Changeset View
Standalone View
Standalone View
sys/kern/syscalls.master
| Show First 20 Lines • Show All 3,133 Lines • ▼ Show 20 Lines | 562 AUE_NULL STD { | ||||
| } | } | ||||
| 563 AUE_NULL STD { | 563 AUE_NULL STD { | ||||
| int getrandom( | int getrandom( | ||||
| _Out_writes_bytes_(buflen) void *buf, | _Out_writes_bytes_(buflen) void *buf, | ||||
| size_t buflen, | size_t buflen, | ||||
| unsigned int flags | unsigned int flags | ||||
| ); | ); | ||||
| } | } | ||||
| 564 AUE_NULL STD { | |||||
| int getfhat( | |||||
| int fd, | |||||
| _In_z_ char *path, | |||||
brooks: _In_z_ | |||||
| _Out_ struct fhandle *fhp, | |||||
| int flags | |||||
| ); | |||||
| } | |||||
| 565 AUE_NULL STD { | |||||
| int fhlink( | |||||
| _In_ struct fhandle *fhp, | |||||
Done Inline Actions_In_ brooks: _In_ | |||||
| _In_z_ const char *to | |||||
Done Inline Actions_In_z_ brooks: _In_z_ | |||||
| ); | |||||
| } | |||||
| 566 AUE_NULL STD { | |||||
| int fhlinkat( | |||||
| _In_ struct fhandle *fhp, | |||||
Done Inline Actions_In_ brooks: _In_ | |||||
| int tofd, | |||||
| _In_z_ const char *to, | |||||
Done Inline Actions_In_z_ brooks: _In_z_ | |||||
| ); | |||||
Done Inline ActionsIndentation looks like it is wrong. brooks: Indentation looks like it is wrong. | |||||
| } | |||||
| 567 AUE_NULL STD { | |||||
| int fhreadlink( | |||||
| _In_ struct fhandle *fhp, | |||||
| _Out_writes_(bufsize) char *buf, | |||||
Done Inline Actions_In_ brooks: _In_ | |||||
| size_t bufsize | |||||
Done Inline Actions_Out_writes_(bufsize) brooks: _Out_writes_(bufsize) | |||||
| ); | |||||
| } | |||||
| ; Please copy any additions and changes to the following compatability tables: | ; Please copy any additions and changes to the following compatability tables: | ||||
| ; sys/compat/freebsd32/syscalls.master | ; sys/compat/freebsd32/syscalls.master | ||||
| ; vim: syntax=off | ; vim: syntax=off | ||||
_In_z_