blob: ef0694e04d3254208c516a0d4cc5b9fe139b0b24 (
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
45
46
47
48
49
|
/*
* Copyright (c) International Business Machines Corp., 2002
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
/*
* This code contributed by Mike Mason (mmlnx@us.ibm.com)
*/
#ifdef _SEM_SEMUN_UNDEFINED
/* glibc 2.1 no longer defines semun, instead it defines
* _SEM_SEMUN_UNDEFINED so users can define semun on their own.
*/
union semun {
int val;
struct semid_ds *buf;
unsigned short int *array;
struct seminfo *__buf;
};
#endif
typedef struct {
unsigned int semmap; /* # of entries in semaphore map */
unsigned int semmni; /* max # of semaphore identifiers */
unsigned int semmns; /* max # of semaphores in system */
unsigned int semmnu; /* num of undo structures system wide */
unsigned int semmsl; /* max num of semaphores per id */
unsigned int semopm; /* max num of ops per semop call */
unsigned int semume; /* max num of undo entries per process */
unsigned int semusz; /* sizeof struct sem_undo */
unsigned int semvmx; /* semaphore maximum value */
unsigned int semaem; /* adjust on exit max value */
} sem_limits_t;
extern int refresh_sem_limits(sem_limits_t*);
|