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