source: trunk/libs/newlib/src/newlib/libc/sys/rtems/include/semaphore.h @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 2.1 KB
Line 
1/*
2 * Copyright (c) 2010 David Xu <davidxu@freebsd.org>
3 *
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 * 1. Redistributions of source code must retain the above copyright
10 *    notice unmodified, this list of conditions, and the following
11 *    disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 *    notice, this list of conditions and the following disclaimer in the
14 *    documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 *
27 * $FreeBSD: head/include/semaphore.h 314424 2017-02-28 21:47:00Z vangyzen $
28 */
29
30/* semaphore.h: POSIX 1003.1b semaphores */
31
32#ifndef _SEMAPHORE_H_
33#define _SEMAPHORE_H_
34
35#include <sys/cdefs.h>
36#include <sys/lock.h>
37#include <sys/_types.h>
38#include <sys/_timespec.h>
39
40typedef struct {
41        unsigned long _flags;
42        struct _Semaphore_Control _Semaphore;
43} sem_t;
44
45#define SEM_FAILED      ((sem_t *)0)
46
47__BEGIN_DECLS
48int      sem_close(sem_t *);
49int      sem_destroy(sem_t *);
50int      sem_getvalue(sem_t * __restrict, int * __restrict);
51int      sem_init(sem_t *, int, unsigned int);
52sem_t   *sem_open(const char *, int, ...);
53int      sem_post(sem_t *);
54int      sem_timedwait(sem_t * __restrict, const struct timespec * __restrict);
55int      sem_trywait(sem_t *);
56int      sem_unlink(const char *);
57int      sem_wait(sem_t *);
58__END_DECLS
59
60#endif /* !_SEMAPHORE_H_ */
Note: See TracBrowser for help on using the repository browser.