sem_wait_np()--Wait for Semaphore with Timeout


  Syntax
 #include <semaphore.h>

 int sem_wait_np(sem_t * sem,
                sem_wait_options_np_t * options); 


  Service Program Name: QP0ZPSEM

  Default Public Authority: *USE

  Threadsafe: Yes

The sem_wait_np() function attempts to decrement by one the value of the semaphore. The semaphore will be decremented by one when its value is greater than zero. If the value of the semaphore is zero, then the current thread will block until the semaphore's value becomes greater than zero or until the timeout period specified on the options parameter has ended. If the semaphore is not decremented before the timeout ends, sem_wait_np() will return with an error, setting errno to [ETIMEDOUT].


Parameters

sem
(Input) A pointer to an initialized unnamed semaphore or opened named semaphore.

options
(Input) A pointer to a semaphore wait (sem_wait_options_np_t) structure. The members of the sem_wait_options_np_t structure are as follows:

Authorities

None.


Return Value



Error Conditions

If sem_wait_np() is not successful, errno usually indicates one of the following errors. Under some conditions, errno could indicate an error other than those listed here.

[ECANCEL]

Operation canceled.

[EDESTROYED]

The semaphore was destroyed.

[EINTR]

Interrupted function call.

[EINVAL]

The value specified for the argument is not correct.

A function was passed incorrect argument values, or an operation was attempted on an object and the operation specified is not supported for that type of object.

An argument value is not valid, out of range, or NULL.

[ETIMEDOUT]

A remote host did not respond within the timeout period.


Error Messages

None.


Related Information


Example

The following example creates a semaphore with an initial value of 1. The value is decremented using sem_wait(). The program then attempts to decrement the semaphore using sem_wait_np() with a timeout of 2 seconds. This will fail with ETIMEDOUT because the semaphore's value is currently zero.

Note: By using the code examples, you agree to the terms of the Code license and disclaimer information.

#include <stdio.h>
#include <errno.h>
#include <semaphore.h>
#include <time.h>
#include <qp0z1170.h>

main() {
  sem_t my_semaphore;
  int value;
  sem_wait_options_np_t options;
  int rc;
  struct timeval waittime;
  time_t start_time;
  time_t end_time;

  sem_init(&my_semaphore, 0, 1);
  sem_getvalue(&my_semaphore, &value);
  printf("The initial value of the semaphore is %d\n", value);
  sem_wait(&my_semaphore);
  sem_getvalue(&my_semaphore, &value);
  printf("The value of the semaphore after the wait is %d\n", value);
  memset(&options, 0, sizeof(options));
  waittime.tv_sec = 2;
  waittime.tv_usec = 0;
  Qp0zCvtToMITime((unsigned char *) &options.timeout,
                  wait_time,
                  QP0Z_CVTTIME_TO_OFFSET);
  time(&start_time);
  rc = sem_wait_np(&my_semaphore, &options);
  time(&end_time);
  if ((rc == -1) && (errno == ETIMEDOUT)) {
     printf("sem_wait_np timed out after %d seconds\n",
            end_time - start_time);
  }
}

Output:

The initial value of the semaphore is 1
The value of the semaphore after the wait is 0
sem_wait_np timed out after 2 seconds


API introduced: V4R4

[ Back to top | UNIX-Type APIs | APIs by category ]