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

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 <fcntl.h>
  46. #include <stdio.h>
  47. /* ==========================================================================
  48.  * machdep_save_state()
  49.  */
  50. int machdep_save_state(void)
  51. {
  52.     return(_setjmp(pthread_run->machdep_data.machdep_state));
  53. }
  54. /* ==========================================================================
  55.  * machdep_restore_state()
  56.  */
  57. void machdep_restore_state(void)
  58. {
  59.     _longjmp(pthread_run->machdep_data.machdep_state, 1);
  60. }
  61. /* ==========================================================================
  62.  * machdep_set_thread_timer()
  63.  */
  64. void machdep_set_thread_timer(struct machdep_pthread *machdep_pthread)
  65. {
  66.     if (setitimer(ITIMER_VIRTUAL, &(machdep_pthread->machdep_timer), NULL)) {
  67.         PANIC();
  68.     }
  69. }
  70. /* ==========================================================================
  71.  * machdep_unset_thread_timer()
  72.  */
  73. void machdep_unset_thread_timer(struct machdep_pthread *machdep_pthread)
  74. {
  75.     struct itimerval zeroval = { { 0, 0 }, { 0, 0} };
  76.     if (setitimer(ITIMER_VIRTUAL, &zeroval, NULL)) {
  77.         PANIC();
  78.     }
  79. }
  80. /* ==========================================================================
  81.  * machdep_pthread_cleanup()
  82.  */
  83. void *machdep_pthread_cleanup(struct machdep_pthread *machdep_pthread)
  84. {
  85.     return(machdep_pthread->machdep_stack);
  86. }
  87. /* ==========================================================================
  88.  * machdep_pthread_start()
  89.  */
  90. void machdep_pthread_start(void)
  91. {
  92. context_switch_done();
  93. sig_check_and_resume();
  94.     /* Run current threads start routine with argument */
  95.     pthread_exit(pthread_run->machdep_data.start_routine
  96.       (pthread_run->machdep_data.start_argument));
  97.     /* should never reach here */
  98.     PANIC();
  99. }
  100. /* ==========================================================================
  101.  * machdep_pthread_create()
  102.  */
  103. void machdep_pthread_create(struct machdep_pthread *machdep_pthread,
  104.   void *(* start_routine)(), void *start_argument, long stack_size,
  105.   void *stack_start, long nsec)
  106. {
  107.     machdep_pthread->machdep_stack = stack_start;
  108.     machdep_pthread->start_routine = start_routine;
  109.     machdep_pthread->start_argument = start_argument;
  110.     machdep_pthread->machdep_timer.it_value.tv_sec = 0;
  111.     machdep_pthread->machdep_timer.it_interval.tv_sec = 0;
  112.     machdep_pthread->machdep_timer.it_interval.tv_usec = 0;
  113.     machdep_pthread->machdep_timer.it_value.tv_usec = nsec / 1000;
  114.     _setjmp(machdep_pthread->machdep_state);
  115.     /*
  116.      * Set up new stact frame so that it looks like it
  117.      * returned from a longjmp() to the beginning of
  118.      * machdep_pthread_start().
  119.      */
  120.     machdep_pthread->machdep_state[0] = (int)machdep_pthread_start;
  121.     /* Stack starts high and builds down. */
  122.     machdep_pthread->machdep_state[2] =
  123.       (int)machdep_pthread->machdep_stack + stack_size;
  124. }
  125. /* ==========================================================================
  126.  * machdep_sys_creat()
  127.  */
  128. machdep_sys_creat(char * path, int mode)
  129. {
  130.         return(machdep_sys_open(path, O_WRONLY | O_CREAT | O_TRUNC, mode));
  131. }
  132.  
  133. /* ==========================================================================
  134.  * machdep_sys_wait3() 
  135.  */
  136. machdep_sys_wait3(int * b, int c, int * d)
  137. {
  138.         return(machdep_sys_wait4(0, b, c, d));
  139. }
  140.  
  141. /* ==========================================================================
  142.  * machdep_sys_waitpid()
  143.  */
  144. machdep_sys_waitpid(int a, int * b, int c)
  145. {
  146.         return(machdep_sys_wait4(a, b, c, NULL));
  147. }  
  148. /* ==========================================================================
  149.  * machdep_sys_send()
  150.  */
  151. machdep_sys_send(int s, const void *buf, int len, int flags)
  152. {
  153. return(machdep_sys_sendto(s, buf, len, flags, (struct sockaddr*)NULL, 0));
  154. }
  155. /* ==========================================================================
  156.  * machdep_sys_recv()
  157.  */
  158. machdep_sys_recv(int s, void *buf, int len, int flags)
  159. {
  160. return(machdep_sys_recvfrom(s, buf, len, flags, (struct sockaddr*)NULL, 0));
  161. }