078dbb2d0e
git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@36074 a95241bf-73f2-0310-859d-f6bbb57e9c96
18 lines
353 B
C
18 lines
353 B
C
/*
|
|
* Copyright 2008-2010, Ingo Weinhold, ingo_weinhold@gmx.de.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef SYSTEM_REALTIME_SEM_H
|
|
#define SYSTEM_REALTIME_SEM_H
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
#define MAX_POSIX_SEMS_PER_TEAM 128
|
|
#define MAX_POSIX_SEMS 1024
|
|
#define MAX_POSIX_SEM_VALUE _POSIX_SEM_VALUE_MAX
|
|
|
|
|
|
#endif // SYSTEM_REALTIME_SEM_H
|