engine-arm32-netbsd-1.3.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:5k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== machdep.c ============================================================
  2.  * Copyright (c) 1993, 1994 Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Description : Machine dependent functions for NetBSD on arm32
  5.  *
  6.  * 1.00 93/08/04 proven
  7.  *      -Started coding this file.
  8.  *
  9.  * 98/10/22 bad
  10.  * -adapt from i386 version
  11.  */
  12. #ifndef lint
  13. static const char rcsid[] = "$Id$";
  14. #endif
  15. #include <pthread.h>
  16. #include <sys/types.h>
  17. #include <sys/socket.h>
  18. #include <sys/syscall.h>
  19. #include <stdlib.h>
  20. #include <fcntl.h>
  21. #include <stdio.h>
  22. #if defined(_JB_REG_R13)
  23. #define REG_LR _JB_REG_R14
  24. #define REG_SP _JB_REG_R13
  25. #else
  26. #define REG_LR JMPBUF_REG_R14
  27. #define REG_SP JMPBUF_REG_R13
  28. #endif
  29. /* ==========================================================================
  30.  * machdep_save_state()
  31.  */
  32. int machdep_save_state(void)
  33. {
  34.     return(_setjmp(pthread_run->machdep_data.machdep_state));
  35. }
  36. /* ==========================================================================
  37.  * machdep_save_state()
  38.  */
  39. int machdep_save_float_state(struct pthread * pthread)
  40. {
  41. return;
  42. }
  43. /* ==========================================================================
  44.  * machdep_restore_state()
  45.  */
  46. void machdep_restore_state(void)
  47. {
  48.     _longjmp(pthread_run->machdep_data.machdep_state, 1);
  49. }
  50. /* ==========================================================================
  51.  * machdep_restore_float_state()
  52.  */
  53. int machdep_restore_float_state(void)
  54. {
  55. return;
  56. }
  57. /* ==========================================================================
  58.  * machdep_set_thread_timer()
  59.  */
  60. void machdep_set_thread_timer(struct machdep_pthread *machdep_pthread)
  61. {
  62.     if (setitimer(ITIMER_VIRTUAL, &(machdep_pthread->machdep_timer), NULL)) {
  63.         PANIC();
  64.     }
  65. }
  66. /* ==========================================================================
  67.  * machdep_unset_thread_timer()
  68.  */
  69. void machdep_unset_thread_timer(struct machdep_pthread *machdep_pthread)
  70. {
  71.     struct itimerval zeroval = { { 0, 0 }, { 0, 0 } };
  72. int ret;
  73. if (machdep_pthread) {
  74.      ret = setitimer(ITIMER_VIRTUAL, &zeroval, 
  75.   &(machdep_pthread->machdep_timer));
  76. } else {
  77.      ret = setitimer(ITIMER_VIRTUAL, &zeroval, NULL); 
  78.     }
  79. if (ret) {
  80.         PANIC();
  81. }
  82. }
  83. /* ==========================================================================
  84.  * machdep_pthread_cleanup()
  85.  */
  86. void *machdep_pthread_cleanup(struct machdep_pthread *machdep_pthread)
  87. {
  88.     return(machdep_pthread->machdep_stack);
  89. }
  90. /* ==========================================================================
  91.  * machdep_pthread_start()
  92.  */
  93. void machdep_pthread_start(void)
  94. {
  95. context_switch_done();
  96. pthread_sched_resume();
  97.     /* Run current threads start routine with argument */
  98.     pthread_exit(pthread_run->machdep_data.start_routine
  99.       (pthread_run->machdep_data.start_argument));
  100.     /* should never reach here */
  101.     PANIC();
  102. }
  103. /* ==========================================================================
  104.  * __machdep_stack_free()
  105.  */
  106. void __machdep_stack_free(void * stack)
  107. {       
  108.     free(stack);
  109. }
  110.  
  111. /* ==========================================================================
  112.  * __machdep_stack_alloc()
  113.  */ 
  114. void * __machdep_stack_alloc(size_t size)
  115. {   
  116.     void * stack;
  117.     
  118.     return(malloc(size));
  119. }     
  120.     
  121. /* ==========================================================================
  122.  * __machdep_pthread_create()
  123.  */
  124. void __machdep_pthread_create(struct machdep_pthread *machdep_pthread,
  125.   void *(* start_routine)(), void *start_argument, 
  126.   long stack_size, long nsec, long flags)
  127. {
  128.     machdep_pthread->start_routine = start_routine;
  129.     machdep_pthread->start_argument = start_argument;
  130.     machdep_pthread->machdep_timer.it_value.tv_sec = 0;
  131.     machdep_pthread->machdep_timer.it_interval.tv_sec = 0;
  132.     machdep_pthread->machdep_timer.it_interval.tv_usec = 0;
  133.     machdep_pthread->machdep_timer.it_value.tv_usec = nsec / 1000;
  134.     _setjmp(machdep_pthread->machdep_state);
  135.     /*
  136.      * Set up new stact frame so that it looks like it
  137.      * returned from a longjmp() to the beginning of
  138.      * machdep_pthread_start().
  139.      */
  140.     machdep_pthread->machdep_state[REG_LR] = (int)machdep_pthread_start;
  141.     /* Stack starts high and builds down. */
  142.     machdep_pthread->machdep_state[REG_SP] =
  143.       (int)machdep_pthread->machdep_stack + stack_size;
  144. }
  145. /* ==========================================================================
  146.  * machdep_sys_creat()
  147.  */
  148. machdep_sys_creat(char * path, int mode)
  149. {
  150.         return(machdep_sys_open(path, O_WRONLY | O_CREAT | O_TRUNC, mode));
  151. }
  152.  
  153. /* ==========================================================================
  154.  * machdep_sys_wait3() 
  155.  */
  156. machdep_sys_wait3(int * b, int c, int * d)
  157. {
  158.         return(machdep_sys_wait4(0, b, c, d));
  159. }
  160.  
  161. /* ==========================================================================
  162.  * machdep_sys_waitpid()
  163.  */
  164. machdep_sys_waitpid(int a, int * b, int c)
  165. {
  166.         return(machdep_sys_wait4(a, b, c, NULL));
  167. }  
  168. /* ==========================================================================
  169.  * machdep_sys_getdtablesize()
  170.  */
  171. machdep_sys_getdtablesize()
  172. {
  173.         return(sysconf(_SC_OPEN_MAX));
  174. }  
  175. /* ==========================================================================
  176.  * machdep_sys_getdirentries()
  177.  */
  178. machdep_sys_getdirentries(int fd, char * buf, int len, int * seek)
  179. {
  180.         return(machdep_sys_getdents(fd, buf, len));
  181. }