2009-03-04 04:28:35 +01:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 The Android Open Source Project
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* * Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
|
|
|
|
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
2014-09-19 01:11:59 +02:00
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
#ifndef _SEMAPHORE_H
|
|
|
|
#define _SEMAPHORE_H
|
|
|
|
|
|
|
|
#include <sys/cdefs.h>
|
2019-05-08 05:33:05 +02:00
|
|
|
#include <sys/types.h>
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__BEGIN_DECLS
|
|
|
|
|
2014-09-19 01:11:59 +02:00
|
|
|
struct timespec;
|
|
|
|
|
2009-03-04 04:28:35 +01:00
|
|
|
typedef struct {
|
2015-01-30 21:30:08 +01:00
|
|
|
unsigned int count;
|
2014-05-06 17:24:27 +02:00
|
|
|
#ifdef __LP64__
|
|
|
|
int __reserved[3];
|
|
|
|
#endif
|
2009-03-04 04:28:35 +01:00
|
|
|
} sem_t;
|
|
|
|
|
2016-08-12 19:28:52 +02:00
|
|
|
#define SEM_FAILED __BIONIC_CAST(reinterpret_cast, sem_t*, 0)
|
2009-03-04 04:28:35 +01:00
|
|
|
|
2023-03-29 20:20:51 +02:00
|
|
|
int sem_clockwait(sem_t* _Nonnull __sem, clockid_t __clock, const struct timespec* _Nonnull __ts) __INTRODUCED_IN(30);
|
|
|
|
int sem_destroy(sem_t* _Nonnull __sem);
|
|
|
|
int sem_getvalue(sem_t* _Nonnull __sem, int* _Nonnull __value);
|
|
|
|
int sem_init(sem_t* _Nonnull __sem, int __shared, unsigned int __value);
|
|
|
|
int sem_post(sem_t* _Nonnull __sem);
|
|
|
|
int sem_timedwait(sem_t* _Nonnull __sem, const struct timespec* _Nonnull __ts);
|
2018-03-05 23:14:44 +01:00
|
|
|
/*
|
2019-05-08 05:33:05 +02:00
|
|
|
* POSIX historically only supported using sem_timedwait() with CLOCK_REALTIME, however that is
|
|
|
|
* typically inappropriate, since that clock can change dramatically, causing the timeout to either
|
2018-03-05 23:14:44 +01:00
|
|
|
* expire earlier or much later than intended. This function is added to use a timespec based
|
|
|
|
* on CLOCK_MONOTONIC that does not suffer from this issue.
|
2019-05-08 05:33:05 +02:00
|
|
|
* Note that sem_clockwait() allows specifying an arbitrary clock and has superseded this
|
|
|
|
* function.
|
2018-03-05 23:14:44 +01:00
|
|
|
*/
|
2023-03-29 20:20:51 +02:00
|
|
|
int sem_timedwait_monotonic_np(sem_t* _Nonnull __sem, const struct timespec* _Nonnull __ts) __INTRODUCED_IN(28);
|
|
|
|
int sem_trywait(sem_t* _Nonnull __sem);
|
|
|
|
int sem_wait(sem_t* _Nonnull __sem);
|
2014-09-19 01:11:59 +02:00
|
|
|
|
|
|
|
/* These aren't actually implemented. */
|
2023-03-29 20:20:51 +02:00
|
|
|
sem_t* _Nullable sem_open(const char* _Nonnull __name, int _flags, ...);
|
|
|
|
int sem_close(sem_t* _Nonnull __sem);
|
|
|
|
int sem_unlink(const char* _Nonnull __name);
|
2009-03-04 04:28:35 +01:00
|
|
|
|
|
|
|
__END_DECLS
|
|
|
|
|
2017-08-18 00:34:21 +02:00
|
|
|
#endif
|