< prev index next >

src/os/bsd/vm/os_bsd.cpp

Print this page

        

*** 737,748 **** // init thread attributes pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_DETACHED); - // stack size - if (os::Bsd::supports_variable_stack_size()) { // calculate stack size if it's not specified by caller if (stack_size == 0) { stack_size = os::Bsd::default_stack_size(thr_type); switch (thr_type) { --- 737,746 ----
*** 767,779 **** } } stack_size = MAX2(stack_size, os::Bsd::min_stack_allowed); pthread_attr_setstacksize(&attr, stack_size); - } else { - // let pthread_create() pick the default value. - } ThreadState state; { pthread_t tid; --- 765,774 ----
< prev index next >