2008-05-14 07:55:16 +04:00
|
|
|
/*
|
2010-04-07 22:52:25 +04:00
|
|
|
* Copyright 2008-2010, Ingo Weinhold, ingo_weinhold@gmx.de.
|
2008-05-14 07:55:16 +04:00
|
|
|
* Distributed under the terms of the MIT License.
|
|
|
|
*/
|
|
|
|
#ifndef SYSTEM_REALTIME_SEM_H
|
|
|
|
#define SYSTEM_REALTIME_SEM_H
|
|
|
|
|
2010-04-07 22:52:25 +04:00
|
|
|
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
|
2008-05-14 07:55:16 +04:00
|
|
|
#define MAX_POSIX_SEMS_PER_TEAM 128
|
|
|
|
#define MAX_POSIX_SEMS 1024
|
2010-04-07 22:52:25 +04:00
|
|
|
#define MAX_POSIX_SEM_VALUE _POSIX_SEM_VALUE_MAX
|
|
|
|
|
2008-05-14 07:55:16 +04:00
|
|
|
|
|
|
|
#endif // SYSTEM_REALTIME_SEM_H
|