Home | History | Annotate | Download | only in pthread_create

Lines Matching defs:current

109 	void *current;
111 long stacksize = sysconf(_SC_THREAD_STACK_MIN); /* make sure we touch the current stack memory */
118 current = overflow(&current);
133 if (((long)arg) < ((long)&current)) {
135 if (((long)&current) - ((long)arg) >= stacksize) {
138 arg, &current);
143 if (((long)arg) - ((long)&current) >= stacksize) {
146 arg, &current);
182 output("Current pos : %p\n", &ret);