test_pthread_cond_timedwait.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== test_pthread_cond.c =========================================
  2.  * Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Description : Test pthread_cond(). Run this after test_create()
  5.  *
  6.  *  1.23 94/05/04 proven
  7.  *      -Started coding this file.
  8.  */
  9. #include <pthread.h>
  10. #include <stdio.h>
  11. #include <errno.h>
  12. #ifndef ETIME
  13. #define ETIME ETIMEDOUT  
  14. #endif
  15. pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  16. pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
  17. void* thread_1(void * new_buf)
  18. {
  19. pthread_mutex_lock(&mutex);
  20. pthread_cond_signal(&cond);
  21. pthread_mutex_unlock(&mutex);
  22. pthread_exit(NULL);
  23. }
  24. void* thread_2(void * new_buf)
  25. {
  26. sleep(1);
  27. pthread_mutex_lock(&mutex);
  28. pthread_cond_signal(&cond);
  29. pthread_mutex_unlock(&mutex);
  30. pthread_exit(NULL);
  31. }
  32. main()
  33. {
  34. struct timespec abstime = { 0, 0 };
  35. struct timeval curtime;
  36. pthread_t thread;
  37. int error;
  38. pthread_init(); 
  39. printf("pthread_cond_timedwait STARTn");
  40. pthread_mutex_lock(&mutex);
  41. gettimeofday(&curtime, NULL);
  42. abstime.tv_sec = curtime.tv_sec + 5; 
  43. /* Test a condition timeout */
  44. if (pthread_cond_timedwait(&cond, &mutex, &abstime) != ETIME) {
  45. printf("pthread_cond_timedwait failed to timeoutn");
  46. printf("pthread_cond_timedwait FAILEDn");
  47. pthread_mutex_unlock(&mutex);
  48. exit(1);
  49. }
  50. printf("Got first timeout okn"); /* Added by monty */
  51. /* Test a normal condition signal */
  52. if (pthread_create(&thread, NULL, thread_1, NULL)) {
  53. printf("pthread_create failedn");
  54. exit(2);
  55. }
  56. abstime.tv_sec = curtime.tv_sec + 10; 
  57. if (pthread_cond_timedwait(&cond, &mutex, &abstime)) {
  58. printf("pthread_cond_timedwait #1 timedoutn");
  59. printf("pthread_cond_timedwait FAILEDn");
  60. pthread_mutex_unlock(&mutex);
  61. exit(1);
  62. }
  63. /* Test a normal condition signal after a sleep */
  64. if (pthread_create(&thread, NULL, thread_2, NULL)) {
  65. printf("pthread_create failedn");
  66. exit(2);
  67. }
  68. pthread_yield();
  69. abstime.tv_sec = curtime.tv_sec + 10; 
  70. if (pthread_cond_timedwait(&cond, &mutex, &abstime)) {
  71. printf("pthread_cond_timedwait #2 timedoutn");
  72. printf("pthread_cond_timedwait FAILEDn");
  73. pthread_mutex_unlock(&mutex);
  74. exit(1);
  75. }
  76. printf("pthread_cond_timedwait PASSEDn");
  77. pthread_mutex_unlock(&mutex);
  78. exit(0);
  79. }