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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== machdep.h ============================================================
  2.  * Copyright (c) 1993 Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * $Id$
  5.  *
  6.  * m68k work by Andy Finnell <andyf@vei.net> based off work by
  7.  *  David Leonard and Chris Provenzano.
  8.  *
  9.  */
  10. #include <unistd.h>
  11. #include <setjmp.h>
  12. #include <sys/time.h>
  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   0x80;
  19. #define SEMAPHORE_TEST_AND_SET(lock)            
  20. ({                                              
  21.         volatile long temp = SEMAPHORE_CLEAR;   
  22.         __asm__ volatile(                       
  23.           "tas %2; bpl 0f; movl #1,%0; 0:"      
  24.           :"=r" (temp)                          
  25.           :"0" (temp),"m" (*lock));             
  26.         temp;                                   
  27. })
  28. #define SEMAPHORE_RESET(lock)           *lock = SEMAPHORE_CLEAR
  29. /*
  30.  * New types
  31.  */
  32. typedef char    semaphore;
  33. /*
  34.  * sigset_t macros
  35.  */
  36. #define SIG_ANY(sig) (sig)
  37. #define SIGMAX 31
  38. /*
  39.  * New Strutures
  40.  */
  41. struct machdep_pthread {
  42.     void         *(*start_routine)(void *);
  43.     void         *start_argument;
  44.     void         *machdep_stack;
  45. struct itimerval machdep_timer;
  46.     jmp_buf      machdep_state;
  47.     char machdep_fstate[92];
  48. };
  49. /*
  50.  * Min pthread stacksize
  51.  */
  52. #define PTHREAD_STACK_MIN 1024
  53. /*
  54.  * Some fd flag defines that are necessary to distinguish between posix
  55.  * behavior and bsd4.3 behavior.
  56.  */
  57. #define __FD_NONBLOCK  O_NONBLOCK
  58. /*
  59.  * Static machdep_pthread initialization values.
  60.  * For initial thread only.
  61.  */
  62. #define MACHDEP_PTHREAD_INIT    
  63. { NULL, NULL, NULL, { { 0, 0 }, { 0, 100000 } }, 0 }
  64. /*
  65.  * New functions
  66.  */
  67. __BEGIN_DECLS
  68. #if defined(PTHREAD_KERNEL)
  69. #ifndef __machdep_stack_get
  70. #define __machdep_stack_get(x)      (x)->machdep_stack
  71. #endif
  72. #ifndef __machdep_stack_set
  73. #define __machdep_stack_set(x, y)   (x)->machdep_stack = y
  74. #endif
  75. #ifndef __machdep_stack_repl
  76. #define __machdep_stack_repl(x, y)                          
  77. {                                                           
  78.     if (stack = __machdep_stack_get(x)) {                   
  79.         __machdep_stack_free(stack);                        
  80.     }                                                       
  81.     __machdep_stack_set(x, y);                              
  82. }
  83. #endif
  84. void *  __machdep_stack_alloc       __P_((size_t));
  85. void    __machdep_stack_free        __P_((void *));
  86.     
  87. int machdep_save_state      __P_((void));
  88. #endif
  89. __END_DECLS