Lines Matching defs:stack_size
570 unsigned long stack_size;
574 stack_size = strtoul(arg, &end, 10);
575 if (errno || end == NULL || stack_size == 0 ||
576 stack_size >= (size_t)-1 / 1024)
579 cfg->huge_worker_stack_size = stack_size * 1024;
876 size_t stack_size;
879 stack_size = eal_get_internal_configuration()->huge_worker_stack_size;
880 if (stack_size != 0) {
882 stack_ptr = rte_zmalloc_socket("lcore_stack", stack_size,
897 if (pthread_attr_setstack(attrp, stack_ptr, stack_size) != 0) {