AUE_SIGALTSTACK instead of AUE_SIGPENDING for sigaltstack().

Obtained from:	TrustedBSD Project
MFC after:	3 days
This commit is contained in:
rwatson 2006-09-17 13:28:11 +00:00
parent 517cd09f4a
commit f50a5f19fb
2 changed files with 2 additions and 2 deletions

View File

@ -124,7 +124,7 @@
50 AUE_SETLOGIN NOPROTO { int setlogin(char *namebuf); }
51 AUE_ACCT NOPROTO { int acct(char *path); }
52 AUE_SIGPENDING COMPAT { int freebsd32_sigpending(void); }
53 AUE_SIGPENDING STD { int freebsd32_sigaltstack( \
53 AUE_SIGALTSTACK STD { int freebsd32_sigaltstack( \
struct sigaltstack32 *ss, \
struct sigaltstack32 *oss); }
54 AUE_IOCTL NOPROTO { int ioctl(int fd, u_long com, \

View File

@ -132,7 +132,7 @@
50 AUE_SETLOGIN STD { int setlogin(char *namebuf); }
51 AUE_ACCT STD { int acct(char *path); }
52 AUE_SIGPENDING COMPAT { int sigpending(void); }
53 AUE_SIGPENDING STD { int sigaltstack(stack_t *ss, \
53 AUE_SIGALTSTACK STD { int sigaltstack(stack_t *ss, \
stack_t *oss); }
54 AUE_IOCTL STD { int ioctl(int fd, u_long com, \
caddr_t data); }