syscall-i386-netbsd-0.9.S
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* ==== syscall.S ============================================================
  2.  * Copyright (c) 1990 The Regents of the University of California.
  3.  * Copyright (c) 1993 Chris Provenzano, proven@mit.edu
  4.  * All rights reserved.
  5.  *
  6.  * This code is derived from software contributed to Berkeley by
  7.  * William Jolitz.
  8.  *
  9.  * Redistribution and use in source and binary forms, with or without
  10.  * modification, are permitted provided that the following conditions
  11.  * are met:
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 2. Redistributions in binary form must reproduce the above copyright
  15.  *    notice, this list of conditions and the following disclaimer in the
  16.  *    documentation and/or other materials provided with the distribution.
  17.  * 3. All advertising materials mentioning features or use of this software
  18.  *    must display the following acknowledgement:
  19.  * This product includes software developed by the University of
  20.  * California, Berkeley and its contributors.
  21.  * 4. Neither the name of the University nor the names of its contributors
  22.  *    may be used to endorse or promote products derived from this software
  23.  *    without specific prior written permission.
  24.  *
  25.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  26.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  27.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  28.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  29.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  30.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  31.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  32.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  33.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  34.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  35.  * SUCH DAMAGE.
  36.  *
  37.  * Description : Machine dependent syscalls for i386/i486/i586
  38.  *
  39.  *  1.00 93/08/26 proven
  40.  *      -Started coding this file.
  41.  *
  42.  * 1.01 93/11/13 proven
  43.  * -The functions readv() and writev() added.
  44.  */
  45. #ifndef lint
  46. .text
  47. .asciz "$Id$";
  48. #endif
  49.  
  50. #if defined(SYSLIBC_SCCS) && !defined(lint)
  51.         .asciz "@(#)syscall.s   5.1 (Berkeley) 4/23/90"
  52. #endif /* SYSLIBC_SCCS and not lint */
  53. #include <machine/asm.h>
  54. #include <sys/syscall.h>
  55. #define SYSCALL(x)
  56. .globl _machdep_sys_/**/x;
  57. _machdep_sys_/**/x:;
  58. movl $(SYS_/**/x), %eax;
  59. .byte 0x9a; .long 0; .word 7;
  60. jb 1b;
  61. ret;
  62. /*
  63.  * Initial asm stuff for all functions.
  64.  */
  65. .text
  66. .align 2
  67. /* ==========================================================================
  68.  * error code for all syscalls. The error value is returned as the negative
  69.  * of the errno value.
  70.  */
  71. 1:
  72. neg %eax
  73. ret
  74. /* ==========================================================================
  75.  * machdep_sys_write()
  76.  */
  77. SYSCALL(write)
  78. /* ==========================================================================
  79.  * machdep_sys_read()
  80.  */
  81. SYSCALL(read)
  82. /* ==========================================================================
  83.  * machdep_sys_open()
  84.  */
  85. SYSCALL(open)
  86. /* ==========================================================================
  87.  * machdep_sys_close()
  88.  */
  89. SYSCALL(close)
  90. /* ==========================================================================
  91.  * machdep_sys_fcntl()
  92.  */
  93. SYSCALL(fcntl)
  94. /* ==========================================================================
  95.  * machdep_sys_lseek()
  96.  */
  97. SYSCALL(lseek)
  98. /* ==========================================================================
  99.  * machdep_sys_pipe()
  100.  */
  101. SYSCALL(pipe)
  102. /* ==========================================================================
  103.  * machdep_sys_dup()
  104.  */
  105. SYSCALL(dup)
  106. /* ==========================================================================
  107.  * machdep_sys_dup2()
  108.  */
  109. SYSCALL(dup2)
  110. /* ==========================================================================
  111.  * machdep_sys_fork()
  112.  */
  113. .globl _machdep_sys_fork;
  114. _machdep_sys_fork:;
  115. movl $(SYS_fork), %eax;
  116. .byte 0x9a; .long 0; .word 7;
  117. cmpl $0, %edx
  118. je 2f
  119. movl $0, %eax
  120. 2:
  121. ret;
  122. /* ==========================================================================
  123.  * machdep_sys_execve()
  124.  */
  125. SYSCALL(execve)
  126. /* ==========================================================================
  127.  * machdep_sys_fstat()
  128.  */
  129. SYSCALL(fstat)
  130. /* ========================================================================== 
  131.  * Nonstandard calls used to make the system work
  132.  *
  133.  * ==========================================================================
  134.  * machdep_sys_select()
  135.  */
  136. SYSCALL(select)
  137. /* ==========================================================================
  138.  * machdep_sys_getdirentries()
  139.  */
  140. SYSCALL(getdirentries)
  141. /* ========================================================================== 
  142.  * Berkeley socket stuff
  143.  * 
  144.  * ==========================================================================
  145.  * machdep_sys_socket()
  146.  */
  147. SYSCALL(socket)
  148. /* ==========================================================================
  149.  * machdep_sys_bind()
  150.  */
  151. SYSCALL(bind)
  152. /* ==========================================================================
  153.  * machdep_sys_connect()
  154.  */
  155. SYSCALL(connect)
  156. /* ==========================================================================
  157.  * machdep_sys_accept()
  158.  */
  159. SYSCALL(accept)
  160. /* ==========================================================================
  161.  * machdep_sys_listen()
  162.  */
  163. SYSCALL(listen)
  164. /* ==========================================================================
  165.  * machdep_sys_getsockopt()
  166.  */
  167. SYSCALL(getsockopt)
  168. /* ==========================================================================
  169.  * machdep_sys_readv()
  170.  */
  171. SYSCALL(readv)
  172. /* ==========================================================================
  173.  * machdep_sys_writev()
  174.  */
  175. SYSCALL(writev)
  176. /* ==========================================================================
  177.  * machdep_sys_getpeername()
  178.  */
  179. SYSCALL(getpeername)
  180. /* ==========================================================================
  181.  * machdep_sys_getsockname()
  182.  */
  183. SYSCALL(getsockname)
  184. /* ==========================================================================
  185.  * machdep_sys_sendto()
  186.  */
  187. SYSCALL(sendto)
  188. /* ==========================================================================
  189.  * machdep_sys_recvfrom()
  190.  */
  191. SYSCALL(recvfrom)