- 论坛徽章:
- 0
|
测试代码 。。。我是按照网上有的文章说的来的。。
- #include <stdio.h>
- #include <pthread.h>
- #define PTW32_STATIC_LIB
- #ifdef PTW32_STATIC_LIB
- static void detach_ptw32(void)
- {
- pthread_win32_thread_detach_np();
- pthread_win32_process_detach_np();
- }
- #endif
- void thread(void * arg)
- {
- printf("Thread is running!\n");
- }
- int main()
- {
- #ifdef PTW32_STATIC_LIB
- pthread_win32_process_attach_np();
- pthread_win32_thread_attach_np();
- atexit(detach_ptw32);
- #endif
- pthread_t id;
- pthread_create(&id,NULL,(void *)thread,NULL);
- printf("Main Thread is running!\n");
- pthread_join(id,NULL);
- return 0;
-
-
- }
复制代码 |
|