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