stalepretzel
stalepretzel

Reputation: 15913

How can I find the list of arguments for any syscall?

I've found a list of syscalls in Mac OS X in /usr/include/sys/syscall.h. However, I can't find any description of what arguments are expected by what functions. Could somebody please point me towards the correct resource?

Upvotes: 0

Views: 1457

Answers (1)

jeffslofish
jeffslofish

Reputation: 360

A reference for OSX system calls with parameters is here: http://www.opensource.apple.com/source/xnu/xnu-1504.3.12/bsd/kern/syscalls.master

Upvotes: 1

Related Questions