]> sourceware.org Git - glibc.git/blame - sysdeps/unix/sysv/sysv4/linux/i386/syscall.S
(base_os): Linux is based on unix/sysv, not unix/sysv/sysv4.
[glibc.git] / sysdeps / unix / sysv / sysv4 / linux / i386 / syscall.S
CommitLineData
439d1d45 1/* Copyright (C) 1995 Free Software Foundation, Inc.
28f540f4
RM
2This file is part of the GNU C Library.
3
4The GNU C Library is free software; you can redistribute it and/or
5modify it under the terms of the GNU Library General Public License as
6published by the Free Software Foundation; either version 2 of the
7License, or (at your option) any later version.
8
9The GNU C Library is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12Library General Public License for more details.
13
14You should have received a copy of the GNU Library General Public
15License along with the GNU C Library; see the file COPYING.LIB. If
16not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17Cambridge, MA 02139, USA. */
18
19#include <sysdep.h>
20
439d1d45
RM
21ASM_GLOBAL_DIRECTIVE syscall_error
22ENTRY (syscall)
23 popl %ecx /* Pop return address into %ecx. */
24 popl %eax /* Pop syscall number into %eax. */
25 pushl %ecx /* Push back return address. */
26 DO_CALL (5) /* Frob the args and do the system call. */
27 testl %eax, %eax /* Check %eax for error. */
28 jl JUMPTARGET(syscall_error) /* Jump to error handler if negative. */
29 ret /* Return to caller. */
This page took 0.040576 seconds and 5 git commands to generate.