Lines Matching defs:stacksize
250 size_t stacksize;
263 newAttrs->stacksize = 0;
286 int dng_pthread_attr_setstacksize(dng_pthread_attr_t *attr, size_t stacksize)
291 (*attr)->stacksize = stacksize;
298 int dng_pthread_attr_getstacksize(const dng_pthread_attr_t *attr, size_t *stacksize)
300 if (attr == NULL || (*attr) == NULL || stacksize == NULL)
303 *stacksize = (*attr)->stacksize;
325 size_t stacksize = 0;
328 dng_pthread_attr_getstacksize (attrs, &stacksize);
333 result = _beginthreadex(NULL, (unsigned)stacksize, trampoline, args.get(), 0, &threadID);