df78f6d313
- Send the systrace_args files for all the compat ABIs to /dev/null for now. Right now makesyscalls.sh generates a file with a hardcoded function name, so it wouldn't work for any of the ABIs anyway. Probably the function name should be configurable via a 'systracename' variable and the functions should be stored in a function pointer in the sysvec structure.
12 lines
298 B
Plaintext
12 lines
298 B
Plaintext
# $FreeBSD$
|
|
sysnames="freebsd32_syscalls.c"
|
|
sysproto="freebsd32_proto.h"
|
|
sysproto_h=_FREEBSD32_SYSPROTO_H_
|
|
syshdr="freebsd32_syscall.h"
|
|
syssw="freebsd32_sysent.c"
|
|
sysmk="/dev/null"
|
|
syscallprefix="FREEBSD32_SYS_"
|
|
switchname="freebsd32_sysent"
|
|
namesname="freebsd32_syscallnames"
|
|
systrace="/dev/null"
|