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

MySQL数据库

开发平台:

Visual C++

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