HomeSort by: relevance | last modified time | path
    Searched refs:stackbase (Results 1 - 2 of 2) 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) {
  /src/lib/libpthread/
pthread.c 333 void *stackbase, *stackbase2, *redzone; local
338 pthread_attr_getstack(attr, &stackbase, &stacksize);
339 if (stackbase == NULL)
344 stackbase = NULL;
352 if (stackbase == NULL &&
368 if (stackbase == NULL) {
371 stackbase = mmap(NULL, stacksize + guardsize,
373 if (stackbase == MAP_FAILED)
380 redzone = (char *)stackbase + stacksize;
381 stackbase2 = (char *)stackbase;
    [all...]

Completed in 17 milliseconds