Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / native_client / src / shared / platform / linux / nacl_semaphore.h
1 /*
2  * Copyright 2008 The Native Client Authors. All rights reserved.
3  * Use of this source code is governed by a BSD-style license that can be
4  * found in the LICENSE file.
5  */
6
7 /*
8  * NaCl semaphore type (Linux)
9  */
10 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_LINUX_NACL_SEMAPHORE_H_
11 #define NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_LINUX_NACL_SEMAPHORE_H_
12
13 #include <semaphore.h>
14
15 struct NaClSemaphore {
16   sem_t sem_obj;
17 };
18
19 #endif  /* NATIVE_CLIENT_SRC_TRUSTED_PLATFORM_LINUX_NACL_SEMAPHORE_H_ */