Searched defs:stack (Results 1 - 4 of 4) sorted by relevance

/bionic/libc/kernel/arch-arm/asm/
H A Dsmp.h34 void *stack; member in struct:secondary_data
/bionic/libc/bionic/
H A Dpthread_debug.c209 // stack trace functions
241 * unwinding the stack.
276 * stack trace entries due to this debugging code. it works
371 CallStackListEntry* stack; member in union:GrowingList::__anon17
398 // call stack when this lock was acquired last
463 static void dup_backtrace(CallStack* stack, int count, intptr_t const* addrs) { argument
464 stack->depth = count;
465 stack->addrs = DbgAllocLocked(count * sizeof(intptr_t));
466 memcpy(stack->addrs, addrs, count * sizeof(intptr_t));
523 dup_backtrace(&pList->stack[pLis
[all...]
H A Dpthread.c224 // Make a note of whether the user supplied this stack (so we know whether or not to free it).
257 void* stack = mmap(NULL, size, prot, flags, -1, 0); local
258 if (stack == MAP_FAILED) {
259 stack = NULL;
263 if (mprotect(stack, guard_size, PROT_NONE) == -1) {
264 munmap(stack, size);
265 stack = NULL;
271 return stack;
275 * Create a new thread. The thread's stack is laid out like so:
286 * . stack are
322 uint8_t* stack = attr->stack_base; local
[all...]
/bionic/libc/kernel/arch-x86/asm/
H A Dprocessor_32.h205 unsigned long stack[64]; member in struct:tss_struct

Completed in 555 milliseconds