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