diff options
author | Theo Schlossnagle <jesus@omniti.com> | 2013-04-11 04:50:36 +0000 |
---|---|---|
committer | Garrett D'Amore <garrett@damore.org> | 2013-04-21 18:21:14 -0700 |
commit | 5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e (patch) | |
tree | 915f278444598eb74b40eef2ee69b64360d82792 /usr/src/head/stdlib.h | |
parent | 6136c589445a3ea081bd34ab72db1060875b6bcc (diff) | |
download | illumos-joyent-5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e.tar.gz |
3713 Implement accept4()
3714 Implement pipe2()
3715 Implement dup3()
3716 Implement mkostemp() and mkostemps()
3719 so_socketpair syscall should preserve FD_CLOEXEC flag
Reviewed by: Dan McDonald <danmcd@nexenta.com>
Reviewed by: Robert Mustacchi <rm@joyent.com>
Approved by: Garrett D'Amore <garrett@damore.org>
Diffstat (limited to 'usr/src/head/stdlib.h')
-rw-r--r-- | usr/src/head/stdlib.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/usr/src/head/stdlib.h b/usr/src/head/stdlib.h index 66a4bb444a..329f654da6 100644 --- a/usr/src/head/stdlib.h +++ b/usr/src/head/stdlib.h @@ -23,6 +23,8 @@ * Copyright (c) 1989, 2010, Oracle and/or its affiliates. All rights reserved. */ +/* Copyright (c) 2013, OmniTI Computer Consulting, Inc. All rights reserved. */ + /* Copyright (c) 1988 AT&T */ /* All Rights Reserved */ @@ -216,6 +218,7 @@ extern int clearenv(void); extern void closefrom(int); extern int daemon(int, int); extern int dup2(int, int); +extern int dup3(int, int, int); extern int fdwalk(int (*)(void *, int), void *); extern char *qecvt(long double, int, int *, int *); extern char *qfcvt(long double, int, int *, int *); @@ -323,6 +326,7 @@ extern int clearenv(); extern void closefrom(); extern int daemon(); extern int dup2(); +extern int dup3(); extern int fdwalk(); extern char *qecvt(); extern char *qfcvt(); |