1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
'\" t
.\" Hey Emacs! This file is -*- nroff -*- source.
.\"
.\" Copyright (C) 2006 Michael Kerrisk <mtk.manpages@gmail.com>
.\"
.\" Permission is granted to make and distribute verbatim copies of this
.\" manual provided the copyright notice and this permission notice are
.\" preserved on all copies.
.\"
.\" Permission is granted to copy and distribute modified versions of this
.\" manual under the conditions for verbatim copying, provided that the
.\" entire resulting derived work is distributed under the terms of a
.\" permission notice identical to this one.
.\"
.\" Since the Linux kernel and libraries are constantly changing, this
.\" manual page may be incorrect or out-of-date. The author(s) assume no
.\" responsibility for errors or omissions, or for damages resulting from
.\" the use of the information contained herein.
.\"
.\" Formatted or processed versions of this manual, if unaccompanied by
.\" the source, must acknowledge the copyright and authors of this work.
.\"
.\" Japanese Version Copyright (c) 2006 Akihiro MOTOKI all rights reserved.
.\" Translated 2006-04-18, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
.\"
.TH SEM_OPEN 3 2006-03-25 "Linux" "Linux Programmer's Manual"
.SH ̾
sem_open \- ̾դޥեץ
.SH
.nf
.B #include <semaphore.h>
.sp
.BI "sem_t *sem_open(const char *" name ", int " oflag );
.BI "sem_t *sem_open(const char *" name ", int " oflag ", "
.BI " mode_t " mode ", unsigned int " value );
.fi
.SH
.BR sem_open ()
ϡ POSIX ޥե뤫¸ΥޥեΥץԤ
ޥե
.I name
Ǽ̤롣
.I name
ιξܺ٤
.BR sem_overview (7)
ȡ
.I oflag
ˤϡ
.BR sem_open ()
ư椹ե饰ꤹ롣
.I oflag
.B O_CREAT
ꤵȡޤ¸ߤʤˤϤΥޥե롣
ޥեνͭ (桼 ID)롼ͭ (롼 ID) ˤϡ
줾ƤӽФץμ¸ UID¸ GID ꤵ롣
.\" ºݤϡLinux Ǥϥե륷ƥ ID Ѥ롣
.I oflag
.B O_CREAT
.B O_EXCL
ξꤵ줿硢ꤵ줿̾
.I name
ΥޥեǤ¸ߤȥ顼֤롣
.PP
.I oflag
.B O_CREAT
ꤹ硢˰ 2 ɬפǤ롣
.I mode
ϡ
.BR open (2)
Ʊ褦ˡޥեꤵ륢 (permission)
ꤹ롣ϥץ umask ǥޥ롣
ޥե˥褦Ȥ桼ϡɤ߽ФĤȽߵĤ
ξɬפ롣
.I value
Ͽޥեνͤꤹ롣
.B O_CREAT
ꤵ졢ꤷ̾
.I name
ΥޥեǤ¸ߤ硢
.I mode
.I value
̵뤵롣
.SH ֤
ȡ
.BR sem_open ()
ϿޥեΥɥ쥹֤
Υɥ쥹¾ΥޥեϢδؿƤӽФݤ˻Ѥ롣
顼ξ硢
.BR sem_open ()
.B SEM_FAILED
֤
.I errno
˥顼ͤåȤ롣
.SH 顼
.TP
.B EACCES
Υޥե¸ߤ뤬ƤӽФˤϤΥޥեץ
Ĥʤ
.TP
.B EEXIST
.I oflag
.B O_CREAT
.B O_EXCL
ξꤵ줿
.I name
Ȥ̾ΥޥեϤǤ¸ߤ롣
.TP
.B EINVAL
.I value
.B SEM_VALUE_MAX
礭
.TP
.B EMFILE
ץ줿եǤˤΥץˤ¤ãƤ롣
.TP
.B ENAMETOOLONG
.I name
Ĺ롣
.TP
.B ENFILE
ץ줿եƥΤǤξ¤ãƤ롣
.TP
.B ENOENT
.I oflag
.B O_CREAT
ե饰ꤵƤ餺
.I name
Ȥ̾Υޥե¸ߤʤ
.TP
.B ENOMEM
ʬʥ꤬ʤ
.SH
POSIX.1-2001.
.SH Ϣ
.BR sem_close (3),
.BR sem_getvalue (3),
.BR sem_post (3),
.BR sem_unlink (3),
.BR sem_wait (3),
.BR sem_overview (7)
|