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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== machdep.h ============================================================
  2.  * Copyright (c) 1994 Chris Provenzano (proven@athena.mit.edu) and
  3.  * Ken Raeburn (raeburn@mit.edu).
  4.  *
  5.  * engine-alpha-osf1.h,v 1.4.4.1 1995/12/13 05:41:42 proven Exp
  6.  *
  7.  */
  8. #include <unistd.h>
  9. #include <setjmp.h>
  10. #include <sys/time.h>
  11. #include <sys/cdefs.h>
  12. #include <sys/signal.h>  /* for _NSIG */
  13. /*
  14.  * The first machine dependent functions are the SEMAPHORES
  15.  * needing the test and set instruction.
  16.  */
  17. #define SEMAPHORE_CLEAR 0
  18. #define SEMAPHORE_SET   0xffff
  19. #define SEMAPHORE_TEST_AND_SET(lock)            
  20. ({                                              
  21.         volatile long t1, temp = SEMAPHORE_SET; 
  22.         __asm__ volatile(                       
  23.   "1: lwarx  %0,0,%1;
  24.       cmpwi  %0, 0;                     
  25.       bne    2f;                        
  26.       stwcx. %2,0,%1;                   
  27.       bne-   1b;                        
  28.    2: "                                 
  29.           :"=r" (t1)                            
  30.           :"m" (lock), "r" (temp));             
  31.         t1;                                     
  32. })
  33. #define SEMAPHORE_RESET(lock)           *lock = SEMAPHORE_CLEAR
  34. /*
  35.  * New types
  36.  */
  37. typedef int semaphore;
  38. /*
  39.  * sigset_t macros
  40.  */
  41. #define        SIG_ANY(sig)            (sig)
  42. #define        SIGMAX                  (_NSIG-1)
  43. /*
  44.  * New Strutures
  45.  */
  46. struct machdep_pthread {
  47.     void                       *(*start_routine)(void *);
  48.     void                       *start_argument;
  49.     void                       *machdep_stack;
  50.     struct itimerval           machdep_timer;
  51.     jmp_buf                machdep_istate;
  52.     unsigned long              machdep_fstate[66];
  53. /* 64-bit fp regs 0-31 + fpscr */
  54. /* We pretend the fpscr is 64 bits */
  55. };
  56. /*
  57.  * Static machdep_pthread initialization values.
  58.  * For initial thread only.
  59.  */
  60. #define MACHDEP_PTHREAD_INIT    
  61.        { NULL, NULL, NULL, { { 0, 0 }, { 0, 100000 } }, { 0 }, { 0 } }
  62. /*
  63.  * Minimum stack size
  64.  */
  65. #define PTHREAD_STACK_MIN      2048
  66. /*
  67.  * Some fd flag defines that are necessary to distinguish between posix
  68.  * behavior and bsd4.3 behavior.
  69.  */
  70. #define __FD_NONBLOCK          O_NONBLOCK
  71. /*
  72.  * New functions
  73.  */
  74. __BEGIN_DECLS
  75. #if defined(PTHREAD_KERNEL)
  76. #define __machdep_stack_get(x)      (x)->machdep_stack
  77. #define __machdep_stack_set(x, y)   (x)->machdep_stack = y
  78. #define __machdep_stack_repl(x, y)                          
  79. {                                                           
  80.     if ((stack = __machdep_stack_get(x))) {                 
  81.         __machdep_stack_free(stack);                        
  82.     }                                                       
  83.     __machdep_stack_set(x, y);                              
  84. }
  85. int machdep_save_state(void);
  86. void __machdep_save_fp_state(unsigned long *);
  87. void __machdep_restore_fp_state(unsigned long *);
  88. void *__machdep_stack_alloc(size_t);
  89. void __machdep_stack_free(void *);
  90. #endif
  91. __END_DECLS