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

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 <sys/syscall.h>
  54. #define SYSCALL(x)
  55. .globl _machdep_sys_/**/x;
  56. _machdep_sys_/**/x:;
  57. movl $(SYS_/**/x), %eax;
  58. .byte 0x9a; .long 0; .word 7;
  59. jb 1b;
  60. ret;
  61. /*
  62.  * Initial asm stuff for all functions.
  63.  */
  64. .text
  65. .align 2
  66. /* ==========================================================================
  67.  * error code for all syscalls. The error value is returned as the negative
  68.  * of the errno value.
  69.  */
  70. 1:
  71. neg %eax
  72. ret
  73. /* ==========================================================================
  74.  * machdep_sys_write()
  75.  */
  76. SYSCALL(write)
  77. /* ==========================================================================
  78.  * machdep_sys_read()
  79.  */
  80. SYSCALL(read)
  81. /* ==========================================================================
  82.  * machdep_sys_open()
  83.  */
  84. SYSCALL(open)
  85. /* ==========================================================================
  86.  * machdep_sys_close()
  87.  */
  88. SYSCALL(close)
  89. /* ==========================================================================
  90.  * machdep_sys_fcntl()
  91.  */
  92. SYSCALL(fcntl)
  93. /* ==========================================================================
  94.  * machdep_sys_lseek()
  95.  */
  96. SYSCALL(lseek)
  97. /* ==========================================================================
  98.  * machdep_sys_stat()
  99.  */
  100. SYSCALL(stat)
  101. /* ==========================================================================
  102.  * machdep_sys_pipe()
  103.  */
  104. SYSCALL(pipe)
  105. /* ==========================================================================
  106.  * machdep_sys_dup()
  107.  */
  108. SYSCALL(dup)
  109. /* ==========================================================================
  110.  * machdep_sys_dup2()
  111.  */
  112. SYSCALL(dup2)
  113. /* ==========================================================================
  114.  * machdep_sys_fork()
  115.  */
  116. .globl _machdep_sys_fork;
  117. _machdep_sys_fork:;
  118. movl $(SYS_fork), %eax;
  119. .byte 0x9a; .long 0; .word 7;
  120. cmpl $0, %edx
  121. je 2f
  122. movl $0, %eax
  123. 2:
  124. ret;
  125. /* ==========================================================================
  126.  * machdep_sys_execve()
  127.  */
  128. SYSCALL(execve)
  129. /* ==========================================================================
  130.  * machdep_sys_fstat()
  131.  */
  132. SYSCALL(fstat)
  133. /* ==========================================================================
  134.  * machdep_sys_fchown()
  135.  */
  136. SYSCALL(fchown)
  137. /* ==========================================================================
  138.  * machdep_sys_fchmod()
  139.  */
  140. SYSCALL(fchmod)
  141. /* ==========================================================================
  142.  * machdep_sys_chown()
  143.  */
  144. SYSCALL(chown)
  145. /* ==========================================================================
  146.  * machdep_sys_chmod()
  147.  */
  148. SYSCALL(chmod)
  149. /* ==========================================================================
  150.  * machdep_sys_chdir()
  151.  */
  152. SYSCALL(chdir)
  153. /* ==========================================================================
  154.  * machdep_sys_chdir()
  155.  */
  156. SYSCALL(link)
  157. /* ==========================================================================
  158.  * machdep_sys_chdir()
  159.  */
  160. SYSCALL(unlink)
  161. /* ==========================================================================
  162.  * machdep_sys_chdir()
  163.  */
  164. SYSCALL(rename)
  165. /* ========================================================================== 
  166.  * Nonstandard calls used to make the system work
  167.  *
  168.  * ==========================================================================
  169.  * machdep_sys_select()
  170.  */
  171. SYSCALL(select)
  172. /* ==========================================================================
  173.  * machdep_sys_getdirentries()
  174.  */
  175. SYSCALL(getdirentries)
  176. /* ==========================================================================
  177.  * machdep_sys_wait4()
  178.  */
  179. SYSCALL(wait4)
  180. /* ========================================================================== 
  181.  * Berkeley socket stuff
  182.  * 
  183.  * ==========================================================================
  184.  * machdep_sys_socket()
  185.  */
  186. SYSCALL(socket)
  187. /* ==========================================================================
  188.  * machdep_sys_bind()
  189.  */
  190. SYSCALL(bind)
  191. /* ==========================================================================
  192.  * machdep_sys_connect()
  193.  */
  194. SYSCALL(connect)
  195. /* ==========================================================================
  196.  * machdep_sys_accept()
  197.  */
  198. SYSCALL(accept)
  199. /* ==========================================================================
  200.  * machdep_sys_listen()
  201.  */
  202. SYSCALL(listen)
  203. /* ==========================================================================
  204.  * machdep_sys_getsockopt()
  205.  */
  206. SYSCALL(getsockopt)
  207. /* ==========================================================================
  208.  * machdep_sys_readv()
  209.  */
  210. SYSCALL(readv)
  211. /* ==========================================================================
  212.  * machdep_sys_writev()
  213.  */
  214. SYSCALL(writev)
  215. /* ==========================================================================
  216.  * machdep_sys_getpeername()
  217.  */
  218. SYSCALL(getpeername)
  219. /* ==========================================================================
  220.  * machdep_sys_getsockname()
  221.  */
  222. SYSCALL(getsockname)
  223. /* ==========================================================================
  224.  * machdep_sys_sendto()
  225.  */
  226. SYSCALL(sendto)
  227. /* ==========================================================================
  228.  * machdep_sys_recvfrom()
  229.  */
  230. SYSCALL(recvfrom)
  231. /* ==========================================================================
  232.  * machdep_sys_sendmsg()
  233.  */
  234. SYSCALL(sendmsg)
  235. /* ==========================================================================
  236.  * machdep_sys_recvmsg()
  237.  */
  238. SYSCALL(recvmsg)
  239. /* ==========================================================================
  240.  * machdep_sys_shutdown()
  241.  */
  242. SYSCALL(shutdown)