Caution: This version of this document is no longer maintained. For the latest documentation, see http://www.qnx.com/developers/docs.

sem_open()

Create or access a named semaphore

Synopsis:

#include <semaphore.h>

sem_t * sem_open( const char * sem_name,
                  int oflags,
                  ... );

Arguments:

sem_name
The name of the semaphore that you want to create or access; see below.
oflags
Flags that affect how the function creates a new semaphore. This argument is a combination of:

Note: Don't set oflags to O_RDONLY, O_RDWR, or O_WRONLY. A semaphore's behavior is undefined with these flags. The QNX libraries silently ignore these options, but they may reduce your code's portability.

For more information, see below.

If you set O_CREAT in oflags, you must also pass the following arguments:

mode_t mode
The semaphore's mode (just like file modes). For portability, you should set the read, write, and execute bits to the same value. An easy way of doing this is to use the constants from <sys/stat.h>:

For more information, see "Access permissions" in the documentation for stat().

unsigned int value
The initial value of the semaphore. A positive value (i.e. greater than zero) indicates an unlocked semaphore, and a value of 0 (zero) indicates a locked semaphore. This value must not exceed SEM_VALUE_MAX.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

The sem_open() function creates or accesses a named semaphore. Named semaphores are slower than the unnamed semaphores created with sem_init(). Semaphores persist as long as the system is up.


Note: If you want to use named semaphores, the named-semaphore manager must be running. Starting with release 6.3.0, procnto, manages named semaphores, which mqueue used to do (and still does, if it detects that procnto isn't doing so).

The sem_open() function returns a semaphore descriptor that you can use with sem_wait(), sem_trywait(), and sem_post(). You can use it until you call sem_close().

The sem_name argument is interpreted as follows:

name Pathname space entry
entry CWD/entry
/entry /dev/sem/entry
entry/newentry CWD/entry/newentry
/entry/newentry /entry/newentry

where CWD is the current working directory for the program at the point that it calls sem_open().


Note: If you want to create or access a semaphore on another node, you have to specify the name as /net/node/sem_location.

The oflags argument is used only for semaphore creation. When creating a new semaphore, you can set oflags to O_CREAT or (O_CREAT|O_EXCL):

O_CREAT
Create a new named semaphore. If you set this bit, you must provide the mode and value arguments to sem_open().
O_EXCL
When creating a new named semaphore, O_EXCL causes sem_open() to fail if a semaphore with sem_name already exists. Without O_EXCL, sem_open() attaches to an existing semaphore or creates a new one if sem_name doesn't exist.

Note: Don't mix named semaphore operations (sem_open() and sem_close()) with unnamed semaphore operations (sem_init() and sem_destroy()) on the same semaphore.

Returns:

A pointer to the created or accessed semaphore, or -1 for failure (errno is set).

Errors:

EACCES
Either the named semaphore exists and you don't have permission to access it, or you're trying to create a new semaphore and you don't have permission.
EEXIST
You specified O_CREAT and O_EXCL in oflags, but the semaphore already exists.
EINVAL
The sem_name argument is invalid or, when creating a semaphore, value is greater than SEM_VALUE_MAX.
EINTR
The call was interrupted by a signal.
ELOOP
Too many levels of symbolic links or prefixes.
EMFILE
The process is using too many files or semaphores.
ENFILE
The system ran out of resources and couldn't open the semaphore.
ENAMETOOLONG
The sem_name argument is longer than (NAME_MAX - 8).
ENOENT
Either the manager for named semaphores (mqueue, if procnto isn't managing them) isn't running, or the sem_name argument doesn't exist and you didn't specify O_CREAT in oflags.
ENOSPC
There's insufficient space to create a new named semaphore.
ENOSYS
The sem_open() function isn't implemented for the filesystem specified in sem_name.

Classification:

POSIX 1003.1 SEM

Safety:
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes

See also:

sem_close(), sem_destroy(), sem_init(), sem_post(), sem_trywait(), sem_unlink(), sem_wait()

mqueue, procnto* in the Utilities Reference