OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SIGNAL_STACK_SIZE
(Results
1 - 3
of
3
) sorted by null
/bionic/libc/bionic/
pthread_internal.h
143
#define
SIGNAL_STACK_SIZE
(16 * 1024 + PAGE_SIZE)
145
#define
SIGNAL_STACK_SIZE
(SIGSTKSZ + PAGE_SIZE)
pthread_exit.cpp
90
munmap(thread->alternate_signal_stack,
SIGNAL_STACK_SIZE
);
pthread_create.cpp
65
void* stack_base = mmap(NULL,
SIGNAL_STACK_SIZE
, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0);
70
munmap(stack_base,
SIGNAL_STACK_SIZE
);
75
ss.ss_size =
SIGNAL_STACK_SIZE
- PAGE_SIZE;
Completed in 161 milliseconds