engine-i386-linux-1.0.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== machdep.h ============================================================
  2.  * Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * $Id$
  5.  */
  6. #include <unistd.h>
  7. #include <setjmp.h>
  8. #include <sys/time.h>
  9. /*
  10.  * The first machine dependent functions are the SEMAPHORES
  11.  * needing the test and set instruction.
  12.  */
  13. #define SEMAPHORE_CLEAR 0
  14. #define SEMAPHORE_SET   1
  15. #define SEMAPHORE_TEST_AND_SET(lock)    
  16. ({
  17. volatile long temp = SEMAPHORE_SET;     
  18. __asm__("xchgl %0,(%2)"                 
  19.         :"=r" (temp)                    
  20.         :"0" (temp),"r" (lock));        
  21. temp;                                   
  22. })
  23. #define SEMAPHORE_RESET(lock)           *lock = SEMAPHORE_CLEAR
  24. /*
  25.  * New types
  26.  */
  27. typedef long    semaphore;
  28. #define SIGMAX 31
  29. /*
  30.  * New Strutures
  31.  */
  32. struct machdep_pthread {
  33.     void         *(*start_routine)(void *);
  34.     void         *start_argument;
  35.     void         *machdep_stack;
  36. struct itimerval machdep_timer;
  37.     jmp_buf      machdep_state;
  38.     char       machdep_float_state[108];
  39. };
  40. /*
  41.  * Static machdep_pthread initialization values.
  42.  * For initial thread only.
  43.  */
  44. #define MACHDEP_PTHREAD_INIT    
  45. { NULL, NULL, NULL, { { 0, 0 }, { 0, 100000 } }, 0 }
  46. /*
  47.  * Minimum stack size
  48.  */
  49. #define PTHREAD_STACK_MIN 1024
  50. /*
  51.  * sigset_t macros
  52.  */
  53. #define SIG_ANY(sig) (sig)
  54. /*
  55.  * Some fd flag defines that are necessary to distinguish between posix
  56.  * behavior and bsd4.3 behavior.
  57.  */
  58. #define __FD_NONBLOCK  O_NONBLOCK
  59. /*
  60.  * New functions
  61.  */
  62. __BEGIN_DECLS
  63. #if defined(PTHREAD_KERNEL)
  64. #define __machdep_stack_get(x)      (x)->machdep_stack
  65. #define __machdep_stack_set(x, y)   (x)->machdep_stack = y
  66. #define __machdep_stack_repl(x, y)                          
  67. {                                                           
  68.     if (stack = __machdep_stack_get(x)) {                   
  69.         __machdep_stack_free(stack);                        
  70.     }                                                       
  71.     __machdep_stack_set(x, y);                              
  72. }
  73. void *  __machdep_stack_alloc       __P_((size_t));
  74. void    __machdep_stack_free        __P_((void *));
  75. int  machdep_save_state      __P_((void));
  76. #endif
  77. __END_DECLS