DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

semop(2)


semop -- semaphore operations

Synopsis

   #include <sys/types.h>
   #include <sys/ipc.h>
   #include <sys/sem.h>
   

int semop(int semid, struct sembuf *sops, size_t nsops);

Description

semop is used to perform atomically an array of semaphore operations on the set of semaphores associated with the semaphore identifier specified by semid. sops is a pointer to the array of semaphore-operation structures. nsops is the number of such structures in the array. The contents of each structure includes the following members:
   short	sem_num;	/* semaphore number */
   short	sem_op;	/* semaphore operation */
   short	sem_flg;	/* operation flags */

Each semaphore operation specified by sem_op is performed on the corresponding semaphore specified by semid and sem_num.

sem_op specifies one of three semaphore operations as follows, depending on whether its value is negative, positive, or zero:

If sem_op is a negative integer, one of the following occurs: {ALTER}

If sem_op is a positive integer, the value of sem_op is added to semval and, if (sem_flg&SEM_UNDO) is true, the value of sem_op is subtracted from the calling process's semadj value for the specified semaphore. {ALTER}

If sem_op is zero, one of the following occurs: {READ}

Return values

On success, semop returns 0, and the value of sempid for each semaphore specified in the array pointed to by sops is set equal to the process ID of the calling process.

On failure, semop returns -1 and sets errno to identify the error.

Errors

In the following conditions, semop fails and sets errno to:

EINTR
semop returned due to receipt of a signal.

EIDRM
semop returned due to the removal of semid from the system.

EFBIG
sem_num is less than zero or greater than or equal to the number of semaphores in the set associated with semid. The signal SIGXFSZ is always generated by this error condition.

E2BIG
nsops is greater than the system-imposed maximum.

EACCES
Operation permission is denied to the calling process [see intro(2)].

EAGAIN
The operation would result in suspension of the calling process but (sem_flg&IPC_NOWAIT) is true.

ENOSPC
The limit on the number of individual processes requesting an SEM_UNDO would be exceeded.

EINVAL
semid is not a valid semaphore identifier.

EINVAL
The number of individual semaphores for which the calling process requests a SEM_UNDO would exceed the limit.

ERANGE
An operation would cause a semval to overflow the system-imposed limit.

ERANGE
An operation would cause a semadj value to overflow the system-imposed limit.

EFAULT
sops points to an illegal address.

References

exec(2), exit(2), fork(2), intro(2), semctl(2), semget(2)

Notices

Considerations for threads programming

While one thread is blocked, siblings might still be executing.

The Threads Library provides two other semaphore facilities for the synchronization of multithreaded programs. See Intro(3pthread) and semaphore(3synch) for details. Both facilities can also be used for synchronization between processes.


© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 25 April 2004