File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6573,7 +6573,7 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
65736573 <define name =" R_OK" value =" 4" />
65746574 <define name =" W_OK" value =" 2" />
65756575 <define name =" X_OK" value =" 1" />
6576- <define name =" PTHREAD_STACK_MIN" value =" CONFIG_PTHREAD_STACK_MIN " />
6576+ <define name =" PTHREAD_STACK_MIN" value =" 16384 " />
65776577 <define name =" PTHREAD_CANCEL_ASYNCHRONOUS" value =" PTHREAD_CANCEL_ASYNCHRONOUS" />
65786578 <define name =" PTHREAD_CANCEL_ENABLE" value =" PTHREAD_CANCEL_ENABLE" />
65796579 <define name =" PTHREAD_CANCEL_DEFERRED" value =" PTHREAD_CANCEL_DEFERRED" />
@@ -6589,7 +6589,7 @@ The function 'mktemp' is considered to be dangerous due to race conditions and s
65896589 <define name =" PTHREAD_MUTEX_NORMAL" value =" PTHREAD_MUTEX_NORMAL" />
65906590 <define name =" PTHREAD_MUTEX_INITIALIZER" value =" PTHREAD_MUTEX_INITIALIZER" />
65916591 <define name =" PTHREAD_MUTEX_RECURSIVE" value =" PTHREAD_MUTEX_RECURSIVE" />
6592- <define name =" PTHREAD_ONCE_INIT" value =" PTHREAD_ONCE_INIT " />
6592+ <define name =" PTHREAD_ONCE_INIT" value =" 0 " />
65936593 <define name =" PTHREAD_PRIO_INHERIT" value =" PTHREAD_PRIO_INHERIT" />
65946594 <define name =" PTHREAD_PRIO_NONE" value =" PTHREAD_PRIO_NONE" />
65956595 <define name =" PTHREAD_PRIO_PROTECT" value =" PTHREAD_PRIO_PROTECT" />
Original file line number Diff line number Diff line change @@ -1528,7 +1528,7 @@ void pthread_cond_init_test(pthread_cond_t *cond, const pthread_condattr_t *attr
15281528 (void )pthread_cond_init (cond , attr );
15291529}
15301530
1531- void pthread_cond_destroy_test (pthread_cond_t * cond )
1531+ void pthread_cond_destroy_test (const pthread_cond_t * cond )
15321532{
15331533 (void )pthread_cond_destroy (cond );
15341534}
@@ -1549,12 +1549,12 @@ void pthread_mutexattr_destroy_test(pthread_mutexattr_t *attr)
15491549 (void )pthread_mutexattr_destroy (attr );
15501550}
15511551
1552- void pthread_mutexattr_settype_test (pthread_mutexattr_t * attr , int type )
1552+ void pthread_mutexattr_settype_test (const pthread_mutexattr_t * attr , int type )
15531553{
15541554 (void )pthread_mutexattr_settype (attr , type );
15551555}
15561556
1557- void pthread_mutexattr_gettype_test (pthread_mutexattr_t * attr , int * type )
1557+ void pthread_mutexattr_gettype_test (const pthread_mutexattr_t * attr , int * type )
15581558{
15591559 (void )pthread_mutexattr_gettype (attr , type );
15601560}
You can’t perform that action at this time.
0 commit comments