engine-hppa-hpux-9.03.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:3k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== machdep.h ============================================================
  2.  * Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  */
  5. #include <unistd.h>
  6. #include <setjmp.h>
  7. #include <sys/time.h>
  8. /*
  9.  * Stuff for compiling
  10.  */
  11. #if defined(__GNUC__)
  12. #if defined(__cplusplus)
  13. #define __BEGIN_DECLS   extern "C" {
  14. #define __END_DECLS             };
  15. #else
  16. #define __BEGIN_DECLS
  17. #define __END_DECLS
  18. #if !defined(__STDC__)
  19. #define const           __const
  20. #define inline          __inline
  21. #define signed          __signed
  22. #define volatile                __volatile
  23. #endif
  24. #endif
  25. #else /* !__GNUC__ */
  26. #define __BEGIN_DECLS
  27. #define __END_DECLS
  28. #define const
  29. #define inline
  30. #define signed
  31. #define volatile
  32. #endif
  33. /*
  34.  * The first machine dependent functions are the SEMAPHORES
  35.  * needing the test and set instruction.
  36.  *
  37.  * Note: The set and clear defines are backwards.
  38.  */
  39. #define SEMAPHORE_CLEAR { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
  40. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 
  41. 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff }
  42. #define SEMAPHORE_SET   0
  43. #define SEMAPHORE_TEST_AND_SET(lock)    
  44. ({
  45. long real_addr;
  46. long temp;     
  47. real_addr = ((long)((*lock) + 15) & ~15);
  48. __asm__ volatile("ldcwx %%r0(%2),%0"
  49.         :"=r" (temp)                    
  50.         :"0" (temp),"r" (real_addr));   
  51. temp ? 0 : 1;                              
  52. })
  53. #define SEMAPHORE_RESET(lock)           
  54. ({
  55. char *real_addr;
  56. real_addr = (char*)((long)((*lock) + 15) & ~15);
  57. *real_addr = 0xff;
  58. })
  59. /*
  60.  * New types
  61.  * The semaphore is really 16 bytes but must be aligened on a 16 byte
  62.  * boundary. By specifing 31 bytes the macros can frob it correctly.
  63.  */
  64. typedef char semaphore[31];
  65. /*
  66.  * Macros for sigset_t
  67.  */
  68. #define SIGMAX 30
  69. /* see hpux-9.03/__signal.h for SIG_ANY */
  70. /*
  71.  * New Strutures
  72.  */
  73. struct machdep_pthread {
  74.     void         *(*start_routine)(void *);
  75.     void         *start_argument;
  76.     void         *machdep_stack;
  77.     struct itimerval machdep_timer;
  78.     jmp_buf machdep_state;
  79.  /*   long       machdep_state[_JBLEN]; */
  80. };
  81. /*
  82.  * Static machdep_pthread initialization values.
  83.  * For initial thread only.
  84.  */
  85. #define MACHDEP_PTHREAD_INIT    
  86. { NULL, NULL, NULL, { { 0, 0 }, { 0, 100000 } }, 0 }
  87. /*
  88.  * Minimum stack size
  89.  */
  90. #define PTHREAD_STACK_MIN 4096
  91. /*
  92.  * Some fd flag defines that are necessary to distinguish between posix
  93.  * behavior and bsd4.3 behavior.
  94.  */
  95. #define __FD_NONBLOCK  O_NONBLOCK
  96. /*
  97.  * page size
  98.  */
  99. #define getpagesize() 4096
  100. /*
  101.  * New functions
  102.  */
  103. __BEGIN_DECLS
  104. #if defined(PTHREAD_KERNEL)
  105. #define __machdep_stack_get(x)      (x)->machdep_stack
  106. #define __machdep_stack_set(x, y)   (x)->machdep_stack = y
  107. #define __machdep_stack_repl(x, y)                          
  108. {                                                           
  109.     if (stack = __machdep_stack_get(x)) {                   
  110.         __machdep_stack_free(stack);                        
  111.     }                                                       
  112.     __machdep_stack_set(x, y);                              
  113. }
  114. void *  __machdep_stack_alloc       __P_((size_t));
  115. void    __machdep_stack_free        __P_((void *));
  116. int machdep_save_state      __P_((void));
  117. #endif
  118. __END_DECLS