13 lines
311 B
C
13 lines
311 B
C
|
/*
|
||
|
* Copyright 2008, Ingo Weinhold, ingo_weinhold@gmx.de.
|
||
|
* Distributed under the terms of the MIT License.
|
||
|
*/
|
||
|
#ifndef SYSTEM_REALTIME_SEM_H
|
||
|
#define SYSTEM_REALTIME_SEM_H
|
||
|
|
||
|
#define MAX_POSIX_SEMS_PER_TEAM 128
|
||
|
#define MAX_POSIX_SEMS 1024
|
||
|
#define MAX_POSIX_SEM_VALUE INT_MAX
|
||
|
|
||
|
#endif // SYSTEM_REALTIME_SEM_H
|