summaryrefslogtreecommitdiff
path: root/usr/src/man/man3c/mkstemp.3c
diff options
context:
space:
mode:
authorKeith M Wesolowski <wesolows@foobazco.org>2013-05-08 18:18:49 +0000
committerKeith M Wesolowski <wesolows@foobazco.org>2013-05-08 18:18:49 +0000
commit43840e901cacf50a9bb41148069e34ca307524e8 (patch)
tree2836162f69bba2534e8b9acf9797e5892f103258 /usr/src/man/man3c/mkstemp.3c
parentabd43b3991c3becf4fd3cc1a370aeafdc8749a30 (diff)
parent5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e (diff)
downloadillumos-joyent-43840e901cacf50a9bb41148069e34ca307524e8.tar.gz
[illumos-gate merge]
commit 5dbfd19ad5fcc2b779f40f80fa05c1bd28fd0b4e 3713 Implement accept4() 3714 Implement pipe2() 3715 Implement dup3() 3716 Implement mkostemp() and mkostemps() 3719 so_socketpair syscall should preserve FD_CLOEXEC flag commit 6136c589445a3ea081bd34ab72db1060875b6bcc 3722 link-editor is over restrictive of R_AMD64_32 addends Conflicts: usr/src/lib/libc/sparcv9/Makefile.com [copyright] usr/src/lib/libc/sparc/Makefile.com [copyright] usr/src/lib/libc/i386/Makefile.com [copyright]
Diffstat (limited to 'usr/src/man/man3c/mkstemp.3c')
-rw-r--r--usr/src/man/man3c/mkstemp.3c21
1 files changed, 19 insertions, 2 deletions
diff --git a/usr/src/man/man3c/mkstemp.3c b/usr/src/man/man3c/mkstemp.3c
index 697cba2a2e..4d7f4c572e 100644
--- a/usr/src/man/man3c/mkstemp.3c
+++ b/usr/src/man/man3c/mkstemp.3c
@@ -1,4 +1,5 @@
'\" te
+.\" Copyright (c) 2013, OmniTI Computer Consulting, Inc. All rights reserved.
.\" Copyright (c) 1992, X/Open Company Limited. All Rights Reserved. Portions Copyright (c) 2006, Sun Microsystems, Inc. All Rights Reserved.
.\" Sun Microsystems, Inc. gratefully acknowledges The Open Group for permission to reproduce portions of its copyrighted documentation. Original documentation from The Open Group can be obtained online at
.\" http://www.opengroup.org/bookstore/.
@@ -7,9 +8,9 @@
.\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
.\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
.\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
-.TH MKSTEMP 3C "Feb 22, 2006"
+.TH MKSTEMP 3C "Apr 19, 2013"
.SH NAME
-mkstemp, mkstemps, mkdtemp \- make a unique file name from a template and open
+mkstemp, mkstemps, mkostemp, mkostemps, mkdtemp \- make a unique file name from a template and open
the file
.SH SYNOPSIS
.LP
@@ -21,11 +22,21 @@ the file
.LP
.nf
+\fBint\fR \fBmkostemp\fR(\fBchar *\fR\fItemplate\fR, \fBint\fR \fIflags\fR);
+.fi
+
+.LP
+.nf
\fBint\fR \fBmkstemps\fR(\fBchar *\fR\fItemplate\fR, \fBint\fR \fIslen\fR);
.fi
.LP
.nf
+\fBint\fR \fBmkostemps\fR(\fBchar *\fR\fItemplate\fR, \fBint\fR \fIslen\fR, \fBint\fR \fIflags\fR);
+.fi
+
+.LP
+.nf
\fBchar *\fR\fBmkdtemp\fR(\fBchar *\fR\fItemplate\fR);
.fi
@@ -48,6 +59,12 @@ permits a suffix to exist in the template. The template should be of the form
specifies the length of the suffix string.
.sp
.LP
+The \fBmkostemp()\fR and \fBmkostemps\fR are like their \fBmkstemp()\fR and
+\fBmkstemps()\fR couterparts except that the \fIflags\fR argument is present
+and used to supplement (as a bitwise inclusive-OR) flags to internal
+\fBopen()\fR calls. (e.g. \fBO_SYNC\fR, \fBO_APPEND\fR, and \fBO_CLOEXEC\fR).
+.sp
+.LP
The \fBmkdtemp()\fR function makes the same replacement to the template as in
\fBmktemp\fR(3C) and creates the template directory using \fBmkdir\fR(2),
passing a \fImode\fR argument of 0700.