testing/ostest: Remove the unnecessary defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE)
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
parent
33987a76a9
commit
d46dce5819
testing/ostest
@ -49,7 +49,7 @@ static sem_t sem_thread_started;
|
||||
* Private Functions
|
||||
****************************************************************************/
|
||||
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
static void sem_cleaner(FAR void *arg)
|
||||
{
|
||||
printf("sem_cleaner #%u\n", (unsigned int)((uintptr_t)arg));
|
||||
@ -60,7 +60,7 @@ static FAR void *sem_waiter(FAR void *parameter)
|
||||
{
|
||||
int status;
|
||||
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
int i;
|
||||
|
||||
/* Register some clean-up handlers */
|
||||
@ -161,7 +161,7 @@ static FAR void *sem_waiter(FAR void *parameter)
|
||||
}
|
||||
|
||||
#if !defined(CONFIG_DISABLE_MQUEUE) && defined(CONFIG_CANCELLATION_POINTS)
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
static void mqueue_cleaner(FAR void *arg)
|
||||
{
|
||||
FAR mqd_t *mqcancel = (FAR mqd_t *)arg;
|
||||
@ -182,7 +182,7 @@ static FAR void *mqueue_waiter(FAR void *parameter)
|
||||
char msgbuffer[CONFIG_MQ_MAXMSGSIZE];
|
||||
size_t nbytes;
|
||||
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
/* Register clean-up handler */
|
||||
|
||||
pthread_cleanup_push(mqueue_cleaner, (FAR void *)&mqcancel);
|
||||
@ -249,7 +249,7 @@ static FAR void *asynch_waiter(FAR void *parameter)
|
||||
{
|
||||
int status;
|
||||
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
int i;
|
||||
|
||||
/* Register some clean-up handlers */
|
||||
|
@ -461,7 +461,7 @@ static int user_main(int argc, char *argv[])
|
||||
pthread_rwlock_cancel_test();
|
||||
check_test_memory_usage();
|
||||
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
/* Verify pthread cancellation cleanup handlers */
|
||||
|
||||
printf("\nuser_main: pthread_cleanup test\n");
|
||||
|
@ -204,8 +204,7 @@ static void test_timeout(void)
|
||||
* usable state after deferred cancellation.
|
||||
*/
|
||||
|
||||
#if defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0
|
||||
#ifdef CONFIG_CANCELLATION_POINTS
|
||||
#if CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0 && defined(CONFIG_CANCELLATION_POINTS)
|
||||
status = pthread_rwlock_trywrlock(&write_lock);
|
||||
if (status != EBUSY)
|
||||
{
|
||||
@ -255,8 +254,7 @@ static void test_timeout(void)
|
||||
"ERROR pthread_rwlock_wrlock, status=%d\n", status);
|
||||
ASSERT(false);
|
||||
}
|
||||
#endif /* CONFIG_CANCELLATION_POINTS */
|
||||
#endif /* defined(CONFIG_PTHREAD_CLEANUP_STACKSIZE) && CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0 */
|
||||
#endif /* CONFIG_PTHREAD_CLEANUP_STACKSIZE > 0 && CONFIG_CANCELLATION_POINTS */
|
||||
|
||||
pthread_rwlock_destroy(&write_lock);
|
||||
pthread_rwlock_destroy(&read_lock);
|
||||
|
Loading…
x
Reference in New Issue
Block a user