On Thu, 17 Jan 2008, Joseph Balenzano wrote: > According to /etc/name_to_sysnum and syscall.h sytem calls 64 - 69 are > reserved. Are they actually in use or just marked reserve for future > development?
The way to find out which syscall numbers are actually in use is to attach mdb to the live kernel, and check: sysent::array | ::print struct sysent sy_callc Check for "nosys" entries. /etc/name_to_sysnum is only a text file that's being used by truss/dtrace to look up the names. Has no other purpose. Do you need a system call number for your project ? You should propose that to the ARC community, traditionally syscall assignments have been done via project ARC cases. Best wishes, FrankH. _______________________________________________ opensolaris-code mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/opensolaris-code
