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

MySQL数据库

开发平台:

Visual C++

  1. /* ==== machdep.c ============================================================
  2.  * Copyright (c) 1993, 1994 Chris Provenzano, proven@athena.mit.edu
  3.  *
  4.  * Copyright (c) 1993 by Chris Provenzano, proven@mit.edu
  5.  * All rights reserved.
  6.  *
  7.  * Redistribution and use in source and binary forms, with or without
  8.  * modification, are permitted provided that the following conditions
  9.  * are met:
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 2. Redistributions in binary form must reproduce the above copyright
  13.  *    notice, this list of conditions and the following disclaimer in the
  14.  *    documentation and/or other materials provided with the distribution.
  15.  * 3. All advertising materials mentioning features or use of this software
  16.  *    must display the following acknowledgement:
  17.  *  This product includes software developed by Chris Provenzano.
  18.  * 4. The name of Chris Provenzano may not be used to endorse or promote
  19.  *      products derived from this software without specific prior written
  20.  *      permission.
  21.  *
  22.  * THIS SOFTWARE IS PROVIDED BY CHRIS PROVENZANO ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL CHRIS PROVENZANO BE LIABLE FOR ANY
  26.  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  27.  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  28.  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  29.  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  * Description : Machine dependent functions for NetBSD on i386
  35.  *
  36.  * 1.00 93/08/04 proven
  37.  *      -Started coding this file.
  38.  */
  39. #ifndef lint
  40. static const char rcsid[] = "$Id$";
  41. #endif
  42. #include <pthread.h>
  43. #include <sys/types.h>
  44. #include <sys/socket.h>
  45. #include <stdlib.h>
  46. #include <fcntl.h>
  47. #include <stdio.h>
  48. /* ==========================================================================
  49.  * machdep_save_state()
  50.  */
  51. int machdep_save_state(void)
  52. {
  53.     return(_setjmp(pthread_run->machdep_data.machdep_state));
  54. }
  55. /* ==========================================================================
  56.  * machdep_save_state()
  57.  */
  58. int machdep_save_float_state(struct pthread * pthread)
  59. {
  60. char * fdata = (char *)pthread->machdep_data.machdep_float_state;
  61. __asm__ ("fsave %0"::"m" (*fdata));
  62. }
  63. /* ==========================================================================
  64.  * machdep_restore_state()
  65.  */
  66. void machdep_restore_state(void)
  67. {
  68.     _longjmp(pthread_run->machdep_data.machdep_state, 1);
  69. }
  70. /* ==========================================================================
  71.  * machdep_restore_float_state()
  72.  */
  73. int machdep_restore_float_state(void)
  74. {
  75. char * fdata = (char *)pthread_run->machdep_data.machdep_float_state;
  76. __asm__ ("frstor %0"::"m" (*fdata));
  77. }
  78. /* ==========================================================================
  79.  * machdep_set_thread_timer()
  80.  */
  81. void machdep_set_thread_timer(struct machdep_pthread *machdep_pthread)
  82. {
  83.     if (setitimer(ITIMER_VIRTUAL, &(machdep_pthread->machdep_timer), NULL)) {
  84.         PANIC();
  85.     }
  86. }
  87. /* ==========================================================================
  88.  * machdep_unset_thread_timer()
  89.  */
  90. void machdep_unset_thread_timer(struct machdep_pthread *machdep_pthread)
  91. {
  92.     struct itimerval zeroval = { { 0, 0 }, { 0, 0 } };
  93. int ret;
  94. if (machdep_pthread) {
  95.      ret = setitimer(ITIMER_VIRTUAL, &zeroval, 
  96.   &(machdep_pthread->machdep_timer));
  97. } else {
  98.      ret = setitimer(ITIMER_VIRTUAL, &zeroval, NULL); 
  99.     }
  100. if (ret) {
  101.         PANIC();
  102. }
  103. }
  104. /* ==========================================================================
  105.  * machdep_pthread_cleanup()
  106.  */
  107. void *machdep_pthread_cleanup(struct machdep_pthread *machdep_pthread)
  108. {
  109.     return(machdep_pthread->machdep_stack);
  110. }
  111. /* ==========================================================================
  112.  * machdep_pthread_start()
  113.  */
  114. void machdep_pthread_start(void)
  115. {
  116. context_switch_done();
  117. pthread_sched_resume();
  118.     /* Run current threads start routine with argument */
  119.     pthread_exit(pthread_run->machdep_data.start_routine
  120.       (pthread_run->machdep_data.start_argument));
  121.     /* should never reach here */
  122.     PANIC();
  123. }
  124. /* ==========================================================================
  125.  * __machdep_stack_free()
  126.  */
  127. void __machdep_stack_free(void * stack)
  128. {       
  129.     free(stack);
  130. }
  131.  
  132. /* ==========================================================================
  133.  * __machdep_stack_alloc()
  134.  */ 
  135. void * __machdep_stack_alloc(size_t size)
  136. {   
  137.     void * stack;
  138.     
  139.     return(malloc(size));
  140. }     
  141.     
  142. /* ==========================================================================
  143.  * __machdep_pthread_create()
  144.  */
  145. void __machdep_pthread_create(struct machdep_pthread *machdep_pthread,
  146.   void *(* start_routine)(), void *start_argument, 
  147.   long stack_size, long nsec, long flags)
  148. {
  149.     machdep_pthread->start_routine = start_routine;
  150.     machdep_pthread->start_argument = start_argument;
  151.     machdep_pthread->machdep_timer.it_value.tv_sec = 0;
  152.     machdep_pthread->machdep_timer.it_interval.tv_sec = 0;
  153.     machdep_pthread->machdep_timer.it_interval.tv_usec = 0;
  154.     machdep_pthread->machdep_timer.it_value.tv_usec = nsec / 1000;
  155.     _setjmp(machdep_pthread->machdep_state);
  156.     /*
  157.      * Set up new stact frame so that it looks like it
  158.      * returned from a longjmp() to the beginning of
  159.      * machdep_pthread_start().
  160.      */
  161.     machdep_pthread->machdep_state[0] = (int)machdep_pthread_start;
  162.     /* Stack starts high and builds down. */
  163.     machdep_pthread->machdep_state[2] =
  164.       (int)machdep_pthread->machdep_stack + stack_size;
  165. }
  166. /* ==========================================================================
  167.  * machdep_sys_creat()
  168.  */
  169. machdep_sys_creat(char * path, int mode)
  170. {
  171.         return(machdep_sys_open(path, O_WRONLY | O_CREAT | O_TRUNC, mode));
  172. }
  173.  
  174. /* ==========================================================================
  175.  * machdep_sys_wait3() 
  176.  */
  177. machdep_sys_wait3(int * b, int c, int * d)
  178. {
  179.         return(machdep_sys_wait4(0, b, c, d));
  180. }
  181.  
  182. /* ==========================================================================
  183.  * machdep_sys_waitpid()
  184.  */
  185. machdep_sys_waitpid(int a, int * b, int c)
  186. {
  187.         return(machdep_sys_wait4(a, b, c, NULL));
  188. }  
  189. /* ==========================================================================
  190.  * machdep_sys_getdtablesize()
  191.  */
  192. machdep_sys_getdtablesize()
  193. {
  194.         return(sysconf(_SC_OPEN_MAX));
  195. }