summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/wamr-sdk/app/libc-builtin-sysroot/include/semaphore.h
blob: 2e086bdc217c770e7bd6ba9f9410c6e9998dfc5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
 * Copyright (C) 2019 Intel Corporation.  All rights reserved.
 * SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
 */

#ifndef _WAMR_LIB_SEMAPHORE_H
#define _WAMR_LIB_SEMAPHORE_H

#ifdef __cplusplus
extern "C" {
#endif

#include <stdint.h>

typedef unsigned int sem_t;

/* Semaphore APIs */

sem_t *
sem_open(const char *name, int oflag, int mode, int val);

int
sem_wait(sem_t *sem);

int
sem_trywait(sem_t *sem);

int
sem_post(sem_t *sem);

int
sem_getvalue(sem_t *restrict sem, int *sval);

int
sem_unlink(const char *name);

int
sem_close(sem_t *sem);

#ifdef __cplusplus
}
#endif

#endif /* end of _WAMR_LIB_SEMAPHORE_H */