Rename CONFIG_MUTEX_TYPES to CONFIG_PTHREAD_MUTEX_TYPES

This commit is contained in:
Gregory Nutt 2017-03-27 09:08:00 -06:00
parent 531f5e1419
commit 2c7dff70ec
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,7 @@ ifeq ($(CONFIG_FS_NAMED_SEMAPHORES),y)
CSRCS += nsem.c CSRCS += nsem.c
endif endif
ifeq ($(CONFIG_MUTEX_TYPES),y) ifeq ($(CONFIG_PTHREAD_MUTEX_TYPES),y)
CSRCS += rmutex.c CSRCS += rmutex.c
endif endif

View File

@ -373,7 +373,7 @@ static int user_main(int argc, char *argv[])
check_test_memory_usage(); check_test_memory_usage();
#endif #endif
#if !defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_MUTEX_TYPES) #if !defined(CONFIG_DISABLE_PTHREAD) && defined(CONFIG_PTHREAD_MUTEX_TYPES)
/* Verify recursive mutexes */ /* Verify recursive mutexes */
printf("\nuser_main: recursive mutex test\n"); printf("\nuser_main: recursive mutex test\n");