HomeSort by: relevance | last modified time | path
    Searched defs:stackbase (Results 1 - 4 of 4) sorted by relevancy

  /src/bin/sh/
memalloc.c 117 struct stack_block stackbase; variable in typeref:struct:stack_block
118 struct stack_block *stackp = &stackbase;
120 char *stacknxt = stackbase.space;
224 if (stacknxt == stackp->space && stackp != &stackbase) {
memalloc.c 117 struct stack_block stackbase; variable in typeref:struct:stack_block
118 struct stack_block *stackp = &stackbase;
120 char *stacknxt = stackbase.space;
224 if (stacknxt == stackp->space && stackp != &stackbase) {
  /src/lib/libpthread/
pthread.c 338 void *stackbase, *stackbase2, *redzone; local in function:pthread__getstack
343 pthread_attr_getstack(attr, &stackbase, &stacksize);
344 if (stackbase == NULL)
349 stackbase = NULL;
357 if (stackbase == NULL &&
375 if (stackbase == NULL) {
378 stackbase = mmap(NULL, stacksize + guardsize,
380 if (stackbase == MAP_FAILED)
387 redzone = (char *)stackbase + stacksize;
388 stackbase2 = (char *)stackbase;
    [all...]
pthread.c 338 void *stackbase, *stackbase2, *redzone; local in function:pthread__getstack
343 pthread_attr_getstack(attr, &stackbase, &stacksize);
344 if (stackbase == NULL)
349 stackbase = NULL;
357 if (stackbase == NULL &&
375 if (stackbase == NULL) {
378 stackbase = mmap(NULL, stacksize + guardsize,
380 if (stackbase == MAP_FAILED)
387 redzone = (char *)stackbase + stacksize;
388 stackbase2 = (char *)stackbase;
    [all...]

Completed in 23 milliseconds