Browse Source

fix the pthread initialization issue.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2508 bbd45198-f89e-11dd-88c7-29a3b14d5316
bernard.xiong@gmail.com 12 years ago
parent
commit
728064a45b
1 changed files with 4 additions and 1 deletions
  1. 4 1
      components/init/components.c

+ 4 - 1
components/init/components.c

@@ -11,6 +11,7 @@
  * Date           Author       Notes
  * Date           Author       Notes
  * 2012-09-20     Bernard      Change the name to components.c
  * 2012-09-20     Bernard      Change the name to components.c
  *                             And all components related header files.
  *                             And all components related header files.
+ * 2012-12-23     Bernard      fix the pthread initialization issue.
  */
  */
 #include "components.h"
 #include "components.h"
 
 
@@ -76,11 +77,13 @@ void rt_components_init(void)
 
 
 #ifdef RT_USING_NEWLIB
 #ifdef RT_USING_NEWLIB
 	libc_system_init(RT_CONSOLE_DEVICE_NAME);
 	libc_system_init(RT_CONSOLE_DEVICE_NAME);
-#endif
+#else
 
 
+	/* the pthread system initialization will be initiallized in libc */
 #ifdef RT_USING_PTHREADS 
 #ifdef RT_USING_PTHREADS 
 	pthread_system_init();
 	pthread_system_init();
 #endif
 #endif
+#endif
 
 
 #ifdef RT_USING_RTGUI
 #ifdef RT_USING_RTGUI
 	rtgui_system_server_init();
 	rtgui_system_server_init();