Lines Matching defs:limit
111 static __attribute__((noinline)) void *check_depth_recursive(void *limit)
113 if ((off_t) &limit < (off_t) limit) {
114 tst_res(TINFO, "&limit = %p, limit = %p", &limit, limit);
118 return check_depth_recursive(limit);
122 * We set the limit one page above the stack bottom to make sure that the stack
135 void *limit = stack + page_size;
145 SAFE_PTHREAD_CREATE(&test_thread, &attr, check_depth_recursive, limit);