OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pthread__stacksize
(Results
1 - 2
of
2
) sorted by relevancy
/src/lib/libpthread/
pthread.c
135
size_t
pthread__stacksize
;
variable in typeref:typename:size_t
356
stacksize =
pthread__stacksize
;
1366
pthread__stacksize
= atoi(value) * 1024;
1367
if (
pthread__stacksize
> pthread__main->pt_stack.ss_size)
1368
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1370
if (
pthread__stacksize
== 0)
1371
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1372
pthread__stacksize
+= pthread__pagesize - 1;
1373
pthread__stacksize
&= ~(pthread__pagesize - 1);
1374
if (
pthread__stacksize
< 4 * pthread__pagesize
[
all
...]
pthread.c
135
size_t
pthread__stacksize
;
variable in typeref:typename:size_t
356
stacksize =
pthread__stacksize
;
1366
pthread__stacksize
= atoi(value) * 1024;
1367
if (
pthread__stacksize
> pthread__main->pt_stack.ss_size)
1368
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1370
if (
pthread__stacksize
== 0)
1371
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1372
pthread__stacksize
+= pthread__pagesize - 1;
1373
pthread__stacksize
&= ~(pthread__pagesize - 1);
1374
if (
pthread__stacksize
< 4 * pthread__pagesize
[
all
...]
Completed in 22 milliseconds
Indexes created Thu Nov 06 19:09:53 GMT 2025