HomeSort by relevance Sort by last modified time
    Searched defs:child_stack (Results 1 - 3 of 3) sorted by null

  /ndk/tests/device/clone/jni/
clone.c 20 void **child_stack; local
29 child_stack = (void **) malloc(STACK_SIZE * sizeof(void *));
32 clone(child_proc, child_stack + STACK_SIZE, CLONE_VM|CLONE_FILES, NULL);
  /external/compiler-rt/lib/asan/lit_tests/TestCases/Linux/
clone_test.cc 24 char child_stack[kStackSize + 1]; local
25 char *sp = child_stack + kStackSize; // Stack grows down.
37 child_stack[i] = i;
38 int ret = child_stack[argc - 1];
  /bionic/libc/bionic/
pthread_create.cpp 43 extern "C" int __pthread_clone(void* (*fn)(void*), void* child_stack, int flags, void* arg);
86 // Our 'tls' and __pthread_clone's 'child_stack' are one and the same, just growing in
208 void* child_stack = tls; local
224 int tid = __pthread_clone(start_routine, child_stack, flags, arg);

Completed in 58 milliseconds