2 Copyright (C) 2015 Szilard Biro
4 This software is provided 'as-is', without any express or implied
5 warranty. In no event will the authors be held liable for any damages
6 arising from the use of this software.
8 Permission is granted to anyone to use this software for any purpose,
9 including commercial applications, and to alter it and redistribute it
10 freely, subject to the following restrictions:
12 1. The origin of this software must not be misrepresented; you must not
13 claim that you wrote the original software. If you use this software
14 in a product, an acknowledgment in the product documentation would be
15 appreciated but is not required.
16 2. Altered source versions must be plainly marked as such, and must not be
17 misrepresented as being the original software.
18 3. This notice may not be removed or altered from any source distribution.
28 #undef _POSIX_SEMAPHORES
29 #define _POSIX_SEMAPHORES
32 #define SEM_VALUE_MAX INT_MAX
35 #define SEM_NSEMS_MAX 256
38 #define SEM_FAILED ((sem_t *)(-1))
46 pthread_cond_t count_nonzero
;
49 typedef struct sema sem_t
;
55 int sem_init(sem_t
*sem
, int pshared
, unsigned int value
);
56 int sem_destroy(sem_t
*sem
);
57 int sem_trywait(sem_t
*sem
);
58 int sem_wait(sem_t
*sem
);
59 int sem_timedwait(sem_t
*sem
, const struct timespec
*abstime
);
60 int sem_post(sem_t
*sem
);
61 sem_t
*sem_open(const char *name
, int oflag
, mode_t mode
, unsigned int value
);
62 int sem_close(sem_t
*sem
);
63 int sem_unlink(const char *name
);
64 int sem_getvalue(sem_t
*sem
, int *sval
);