aboutsummaryrefslogtreecommitdiffstats
path: root/sys/darwin/sys.txt
Commit message (Collapse)AuthorAgeFilesLines
* pkg/host: explicitly disable syz_execute_funcDmitry Vyukov2024-04-291-1/+1
| | | | | | | | | Disable the syscall in descriptions rather than in the code. This makes it more visible for users that it's disabled, and makes it less special (will not need to move this logic to host). Also change the condition in syz-sysgen to be more precise, otherwise syz_execute_func becomes unused function.
* sys/darwin: use nested flag definitions where sensiblePaul Chaignon2023-12-051-1/+1
| | | | | | These flags were identified using the same script as for sys/linux. Signed-off-by: Paul Chaignon <paul.chaignon@gmail.com>
* sys/darwin: initial syscall definitionsPatrick Meyer2021-06-071-10/+178
| | | | Pretty much ripped from freebsd +/- what isn't applicable to darwin.
* sys/darwin: minimal set of syscallsPatrick Meyer2021-05-201-0/+18
To make MakeUnixNeutralizer work we need to have definitions of mmap and friends, like MAP_FIXED.