2009-11-25 02:22:30 +00:00
|
|
|
#include <errno.h>
|
|
|
|
#include <semaphore.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <internaltypes.h>
|
2019-03-25 12:28:18 +00:00
|
|
|
#include <support/check.h>
|
2009-11-25 02:22:30 +00:00
|
|
|
|
2019-06-21 15:57:41 +00:00
|
|
|
/* A bogus clock value that tells run_test to use sem_timedwait rather than
|
|
|
|
sem_clockwait. */
|
|
|
|
#define CLOCK_USE_TIMEDWAIT (-1)
|
2009-11-25 02:22:30 +00:00
|
|
|
|
2019-06-21 15:57:41 +00:00
|
|
|
typedef int (*waitfn_t)(sem_t *, struct timespec *);
|
|
|
|
|
|
|
|
static void
|
|
|
|
do_test_wait (waitfn_t waitfn, const char *fnname)
|
2009-11-25 02:22:30 +00:00
|
|
|
{
|
|
|
|
union
|
|
|
|
{
|
|
|
|
sem_t s;
|
|
|
|
struct new_sem ns;
|
|
|
|
} u;
|
|
|
|
|
2019-06-21 15:57:41 +00:00
|
|
|
printf ("do_test_wait: %s\n", fnname);
|
|
|
|
|
2019-03-25 12:28:18 +00:00
|
|
|
TEST_COMPARE (sem_init (&u.s, 0, 0), 0);
|
2009-11-25 02:22:30 +00:00
|
|
|
|
|
|
|
struct timespec ts = { 0, 1000000001 }; /* Invalid. */
|
|
|
|
errno = 0;
|
2019-06-21 15:57:41 +00:00
|
|
|
TEST_VERIFY_EXIT (waitfn (&u.s, &ts) < 0);
|
2019-03-25 12:28:18 +00:00
|
|
|
TEST_COMPARE (errno, EINVAL);
|
|
|
|
|
2015-01-21 05:46:16 +00:00
|
|
|
#if __HAVE_64B_ATOMICS
|
|
|
|
unsigned int nwaiters = (u.ns.data >> SEM_NWAITERS_SHIFT);
|
|
|
|
#else
|
|
|
|
unsigned int nwaiters = u.ns.nwaiters;
|
|
|
|
#endif
|
2019-03-25 12:28:18 +00:00
|
|
|
TEST_COMPARE (nwaiters, 0);
|
2012-03-08 08:33:12 +00:00
|
|
|
|
|
|
|
ts.tv_sec = /* Invalid. */ -2;
|
|
|
|
ts.tv_nsec = 0;
|
|
|
|
errno = 0;
|
2019-06-21 15:57:41 +00:00
|
|
|
TEST_VERIFY_EXIT (waitfn (&u.s, &ts) < 0);
|
2019-03-25 12:28:18 +00:00
|
|
|
TEST_COMPARE (errno, ETIMEDOUT);
|
2015-01-21 05:46:16 +00:00
|
|
|
#if __HAVE_64B_ATOMICS
|
|
|
|
nwaiters = (u.ns.data >> SEM_NWAITERS_SHIFT);
|
|
|
|
#else
|
|
|
|
nwaiters = u.ns.nwaiters;
|
|
|
|
#endif
|
2019-03-25 12:28:18 +00:00
|
|
|
TEST_COMPARE (nwaiters, 0);
|
2019-06-21 15:57:41 +00:00
|
|
|
}
|
2009-11-25 02:22:30 +00:00
|
|
|
|
2019-06-21 15:57:41 +00:00
|
|
|
int test_sem_timedwait (sem_t *sem, struct timespec *ts)
|
|
|
|
{
|
|
|
|
return sem_timedwait (sem, ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
int test_sem_clockwait_monotonic (sem_t *sem, struct timespec *ts)
|
|
|
|
{
|
|
|
|
return sem_clockwait (sem, CLOCK_MONOTONIC, ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
int test_sem_clockwait_realtime (sem_t *sem, struct timespec *ts)
|
|
|
|
{
|
|
|
|
return sem_clockwait (sem, CLOCK_REALTIME, ts);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int do_test (void)
|
|
|
|
{
|
|
|
|
do_test_wait (&test_sem_timedwait,
|
|
|
|
"sem_timedwait");
|
|
|
|
do_test_wait (&test_sem_clockwait_monotonic,
|
|
|
|
"sem_clockwait(monotonic)");
|
|
|
|
do_test_wait (&test_sem_clockwait_realtime,
|
|
|
|
"sem_clockwait(realtime)");
|
2009-11-25 02:22:30 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-03-25 12:28:18 +00:00
|
|
|
#include <support/test-driver.c>
|