OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pthread__stacksize
(Results
1 - 2
of
2
) sorted by relevancy
/src/lib/libpthread/
pthread.c
128
size_t
pthread__stacksize
;
variable
349
stacksize =
pthread__stacksize
;
1360
pthread__stacksize
= atoi(value) * 1024;
1361
if (
pthread__stacksize
> pthread__main->pt_stack.ss_size)
1362
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1364
if (
pthread__stacksize
== 0)
1365
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1366
pthread__stacksize
+= pthread__pagesize - 1;
1367
pthread__stacksize
&= ~(pthread__pagesize - 1);
1368
if (
pthread__stacksize
< 4 * pthread__pagesize
[
all
...]
pthread.c
128
size_t
pthread__stacksize
;
variable
349
stacksize =
pthread__stacksize
;
1360
pthread__stacksize
= atoi(value) * 1024;
1361
if (
pthread__stacksize
> pthread__main->pt_stack.ss_size)
1362
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1364
if (
pthread__stacksize
== 0)
1365
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1366
pthread__stacksize
+= pthread__pagesize - 1;
1367
pthread__stacksize
&= ~(pthread__pagesize - 1);
1368
if (
pthread__stacksize
< 4 * pthread__pagesize
[
all
...]
Completed in 130 milliseconds
Indexes created Thu Sep 24 00:25:51 UTC 2026