Add comments on NOARGS, NODEF, and NOPROTO.

This commit is contained in:
David E. O'Brien 2008-08-21 22:57:31 +00:00
parent b1feec2392
commit 35c316caaf
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=181972
2 changed files with 15 additions and 0 deletions

View file

@ -31,6 +31,13 @@
; NOSTD implemented but as a lkm that can be statically
; compiled in; sysent entry will be filled with lkmsys
; so the SYSCALL_MODULE macro works
; NOARGS same as STD except do not create structure in sys/sysproto.h
; NODEF same as STD except only have the entry in the syscall table
; added. Meaning - do do not create structure or function
; prototype in sys/sysproto.h
; NOPROTO same as STD except do not create structure or
; function prototype in sys/sysproto.h. Does add a
; definition to syscall.h besides adding a sysent.
; #ifdef's, etc. may be included, and are copied to the output files.

View file

@ -30,6 +30,14 @@
; NOSTD implemented but as a lkm that can be statically
; compiled in; sysent entry will be filled with lkmsys
; so the SYSCALL_MODULE macro works
; NOARGS same as STD except do not create structure in sys/sysproto.h
; NODEF same as STD except only have the entry in the syscall table
; added. Meaning - do do not create structure or function
; prototype in sys/sysproto.h
; NOPROTO same as STD except do not create structure or
; function prototype in sys/sysproto.h. Does add a
; definition to syscall.h besides adding a sysent.
;
; Please copy any additions and changes to the following compatability tables:
; sys/compat/freebsd32/syscalls.master