OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pthread__stacksize
(Results
1 - 4
of
4
) sorted by relevancy
/src/lib/libpthread/
pthread.c
135
size_t
pthread__stacksize
;
variable in typeref:typename:size_t
354
stacksize =
pthread__stacksize
;
1364
pthread__stacksize
= atoi(value) * 1024;
1365
if (
pthread__stacksize
> pthread__main->pt_stack.ss_size)
1366
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1368
if (
pthread__stacksize
== 0)
1369
pthread__stacksize
= pthread__main->pt_stack.ss_size;
1370
pthread__stacksize
+= pthread__pagesize - 1;
1371
pthread__stacksize
&= ~(pthread__pagesize - 1);
1372
if (
pthread__stacksize
< 4 * pthread__pagesize
[
all
...]
pthread_attr.c
68
p->ptap_stacksize =
pthread__stacksize
;
369
*size =
pthread__stacksize
;
407
*size =
pthread__stacksize
;
pthread_int.h
172
extern size_t
pthread__stacksize
;
/src/tests/lib/libpthread/
t_stack.c
78
* stack size (
pthread__stacksize
) used for pthreads.
87
extern size_t
pthread__stacksize
; /* pthread_int.h */
88
ATF_CHECK_EQ_MSG(stacksize,
pthread__stacksize
,
89
"stacksize=%zu
pthread__stacksize
=%zu",
90
stacksize,
pthread__stacksize
);
Completed in 13 milliseconds
Indexes created Thu Sep 25 16:09:42 GMT 2025