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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== test_pthread_join.c =================================================
  2.  * Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Description : Test pthread_join(). Run this after test_create()
  5.  *
  6.  *  1.23 94/05/04 proven
  7.  *      -Started coding this file.
  8.  */
  9. #define PTHREAD_KERNEL
  10. #include <pthread.h>
  11. #include <stdio.h>
  12. /* This thread yields so the creator has a live thread to wait on */
  13. void* new_thread_1(void * new_buf)
  14. {
  15. int i;
  16. sprintf((char *)new_buf, "New thread %%d stack at %xn", &i);
  17. pthread_yield();
  18. return(new_buf);
  19. PANIC();
  20. }
  21. /* This thread doesn't yield so the creator has a dead thread to wait on */
  22. void* new_thread_2(void * new_buf)
  23. {
  24. int i;
  25. sprintf((char *)new_buf, "New thread %%d stack at %xn", &i);
  26. return(new_buf);
  27. PANIC();
  28. }
  29. main()
  30. {
  31. char buf[256], *status;
  32. pthread_t thread;
  33. int debug = 1;
  34. int i = 0;
  35. pthread_init(); 
  36. printf("Original thread stack at %xn", &i);
  37. if (pthread_create(&thread, NULL, new_thread_1, (void *)buf) == OK) {
  38. if (pthread_join(thread, (void **)(&status)) == OK) {
  39. if (debug) { printf(status, ++i); }
  40. } else {
  41. printf("ERROR: Joining with new thread #1.n");
  42. printf("FAILED: test_pthread_joinn");
  43. exit(1);
  44. } else {
  45. printf("ERROR:  Creating new thread #1n");
  46. printf("FAILED: test_pthread_joinn");
  47. exit(2);
  48. }
  49. /* Now have the created thread finishing before the join. */
  50. if (pthread_create(&thread, NULL, new_thread_2, (void *)buf) == OK){
  51. pthread_yield();
  52. if (pthread_join(thread, (void **)(&status)) == OK) {
  53. if (debug) { printf(status, ++i); }
  54. } else {
  55. printf("ERROR: Joining with new thread #2.n");
  56. printf("FAILED: test_pthread_joinn");
  57. exit(1);
  58. } else {
  59. printf("ERROR:  Creating new thread #2n");
  60. printf("FAILED: test_pthread_joinn");
  61. exit(2);
  62. }
  63. printf("test_pthread_join PASSEDn");
  64. pthread_exit(NULL);
  65. }