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

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. /*
  56.  * Initial asm stuff for all functions.
  57.  */
  58. .text
  59. .align 2
  60. /* ==========================================================================
  61.  * error code for all syscalls. The error value is returned as the negative
  62.  * of the errno value.
  63.  */
  64. 1:
  65. neg %eax
  66. ret
  67. /* ==========================================================================
  68.  * machdep_sys_fork()
  69.  */
  70. .globl _machdep_sys_fork;
  71. _machdep_sys_fork:;
  72. movl $(SYS_fork), %eax;
  73. .byte 0x9a; .long 0; .word 7;
  74. cmpl $0, %edx
  75. je 2f
  76. movl $0, %eax
  77. 2:
  78. ret;
  79. /* ==========================================================================
  80.  * machdep_sys___syscall()
  81.  */
  82. _machdep_sys___syscall:;
  83. movl $(SYS___syscall), %eax;
  84. .byte 0x9a; .long 0; .word 7;
  85. jb 3f;
  86. ret
  87. /* ==========================================================================
  88.  * machdep_sys_sigsuspend()
  89.  */
  90. .globl _machdep_sys_sigsuspend;
  91. _machdep_sys_sigsuspend:;
  92. movl    4(%esp),%eax            # fetch mask arg
  93.     movl    (%eax),%eax             # indirect to mask arg
  94.     movl    %eax,4(%esp)
  95. movl $(SYS_sigsuspend), %eax;
  96. .byte 0x9a; .long 0; .word 7;
  97. jb 3f;
  98. ret
  99. 3:
  100. neg %eax
  101. movl $0xffffffff,%edx
  102. ret
  103. /* ==========================================================================
  104.  * machdep_sys_lseek()
  105.  */
  106. .globl _machdep_sys_lseek;
  107. _machdep_sys_lseek:;
  108. pushl  %ebp;
  109. movl   %esp,%ebp;
  110. pushl  0x14(%ebp);
  111. pushl  0x10(%ebp);
  112. pushl  0xc(%ebp);
  113. pushl  $0x0;
  114. pushl  0x8(%ebp);
  115. pushl  $0x0;
  116. pushl $(SYS_lseek);
  117. call _machdep_sys___syscall;
  118. leave
  119. ret
  120. /* ==========================================================================
  121.  * machdep_sys_ftruncate() ; Added by Monty
  122.  */
  123.         .globl _machdep_sys_ftruncate;
  124.  
  125. _machdep_sys_ftruncate:;
  126.  
  127.         pushl  %ebp; 
  128.         movl   %esp,%ebp;
  129.         pushl  0x10(%ebp);
  130.         pushl  0xc(%ebp);
  131.         pushl  $0x0; # Why this?
  132.         pushl  0x8(%ebp);
  133.         pushl  $0x0; # And this?
  134.         pushl $(SYS_ftruncate);
  135.         call _machdep_sys___syscall;
  136.         leave
  137.         ret