OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MAXIDS
(Results
1 - 3
of
3
) sorted by null
/external/ltp/testcases/kernel/syscalls/ipc/semget/
semget05.c
41
* - Changed the value of
MAXIDS
for the specific machine by reading
57
* The
MAXIDS
value is somewhat arbitrary and may need to be increased
61
int
MAXIDS
= 2048;
73
/* Set the
MAXIDS
for the specific machine by reading the system limit
80
MAXIDS
= getmaxid + 1;
84
sem_id_arr = malloc(sizeof(int) *
MAXIDS
);
129
if (num_sems ==
MAXIDS
) {
132
"increase the
MAXIDS
value in the test.");
/external/ltp/testcases/kernel/syscalls/ipc/shmget/
shmget03.c
59
* The
MAXIDS
value is somewhat arbitrary and may need to be increased
62
#define
MAXIDS
8192
67
int shm_id_arr[
MAXIDS
];
135
* If the loop exceeds
MAXIDS
, then break the test and cleanup.
140
if (num_shms ==
MAXIDS
) {
143
"increase the
MAXIDS
value in the test.");
/external/ltp/testcases/kernel/mem/hugetlb/hugeshmget/
hugeshmget03.c
63
* The
MAXIDS
value is somewhat arbitrary and may need to be increased
66
#define
MAXIDS
8192
72
static int shm_id_arr[
MAXIDS
];
131
* If the loop exceeds
MAXIDS
, then break the test and cleanup.
138
if (num_shms ==
MAXIDS
)
141
"Please increase the
MAXIDS
value in "
Completed in 62 milliseconds