- 论坛徽章:
- 0
|
原帖由 alexhappy 于 2009-2-5 14:42 发表 ![]()
you sure?
sure. 我有测试代码
或者pthread_condattr有什么属性可以设?
- #include <unistd.h>
- #include <stdio.h>
- #include <pthread.h>
- pthread_mutex_t mutex;
- pthread_cond_t cond;
- void *thread( void *arg )
- {
- printf( "Entering thread\n" );
- pthread_mutex_lock( &mutex );
- pthread_mutex_lock( &mutex );
- printf( "Before condition wait\n" );
-
- pthread_cond_wait( &cond, &mutex );
- printf( "After condition wait\n" );
- pthread_mutex_unlock( &mutex );
- pthread_mutex_unlock( &mutex );
- return NULL;
- }
- int main( )
- {
- pthread_t thread_id;
- /* Create recursive mutex */
- pthread_mutexattr_t attr;
- pthread_mutexattr_init( &attr );
- pthread_mutexattr_settype( &attr, PTHREAD_MUTEX_RECURSIVE );
- pthread_mutex_init( &mutex, &attr );
- pthread_mutexattr_destroy( &attr );
- pthread_cond_init( &cond, NULL );
- /* Create a thread to wait on the condition */
- pthread_create( &thread_id, NULL, &thread, NULL );
- sleep( 1 );
- printf( "Before mutex Lock\n" );
- pthread_mutex_lock( &mutex );
- printf("After mutex Lock\n");
- pthread_cond_signal( &cond );
- pthread_mutex_unlock( &mutex );
- pthread_join( thread_id, NULL );
- pthread_cond_destroy( &cond );
- pthread_mutex_destroy( &mutex );
- return 0;
- }
复制代码 |
|