summaryrefslogtreecommitdiffstats
path: root/sys/compat/freebsd32/syscalls.master
diff options
context:
space:
mode:
authorbrooks <brooks@FreeBSD.org>2016-06-22 21:15:59 +0000
committerbrooks <brooks@FreeBSD.org>2016-06-22 21:15:59 +0000
commite4ef2142c85cd9081fd589ffbefec3915f814669 (patch)
tree079f6c8958704d24a0f7d4cd28ec4220a38a594c /sys/compat/freebsd32/syscalls.master
parenta11d117db18f7dc7ed2f1ff5b24a3518017f058b (diff)
downloadFreeBSD-src-e4ef2142c85cd9081fd589ffbefec3915f814669.zip
FreeBSD-src-e4ef2142c85cd9081fd589ffbefec3915f814669.tar.gz
Mark the pipe() system call as COMPAT10.
As of r302092 libc uses pipe2() with a zero flags value instead of pipe(). Commit with regenerated files and implementation to follow. Approved by: re (gjb) Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D6816
Diffstat (limited to 'sys/compat/freebsd32/syscalls.master')
-rw-r--r--sys/compat/freebsd32/syscalls.master3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/compat/freebsd32/syscalls.master b/sys/compat/freebsd32/syscalls.master
index 2303591..b8900fb 100644
--- a/sys/compat/freebsd32/syscalls.master
+++ b/sys/compat/freebsd32/syscalls.master
@@ -29,6 +29,7 @@
; COMPAT4 included on COMPAT4 #ifdef (FreeBSD 4 compat)
; COMPAT6 included on COMPAT6 #ifdef (FreeBSD 6 compat)
; COMPAT7 included on COMPAT7 #ifdef (FreeBSD 7 compat)
+; COMPAT10 included on COMPAT10 #ifdef (FreeBSD 10 compat)
; OBSOL obsolete, not included in system, only specifies name
; UNIMPL not implemented, placeholder only
; NOSTD implemented but as a lkm that can be statically
@@ -124,7 +125,7 @@
40 AUE_LSTAT COMPAT { int freebsd32_lstat(char *path, \
struct ostat *ub); }
41 AUE_DUP NOPROTO { int dup(u_int fd); }
-42 AUE_PIPE NOPROTO { int pipe(void); }
+42 AUE_PIPE COMPAT10 { int freebsd32_pipe(void); }
43 AUE_GETEGID NOPROTO { gid_t getegid(void); }
44 AUE_PROFILE NOPROTO { int profil(caddr_t samples, size_t size, \
size_t offset, u_int scale); }
OpenPOWER on IntegriCloud