2.3.3-74
[glibc.git] / sysdeps / unix / sysv / sco3.2.4 / uname.S
blobbc61089d653648b125f7a7d188c4179117a79f65
1 /* Copyright (C) 1993, 1994, 1997 Free Software Foundation, Inc.
2    Contributed by Scott Bartram.
3    This file is part of the GNU C Library.
5    The GNU C Library is free software; you can redistribute it and/or
6    modify it under the terms of the GNU Lesser General Public
7    License as published by the Free Software Foundation; either
8    version 2.1 of the License, or (at your option) any later version.
10    The GNU C Library is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    Lesser General Public License for more details.
15    You should have received a copy of the GNU Lesser General Public
16    License along with the GNU C Library; if not, write to the Free
17    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
18    02111-1307 USA.  */
20 #include <sysdep.h>
23     before lcall, stack contents should be:
25         4(%esp) -> name
26         8(%esp) -> unspecified
27         12(%esp) -> 0
28  */
30 ENTRY (uname)
31         pushl $0x0              /* Push the discriminator flag.  */
32         pushl $0x0              /* Push dummy placeholder.  */
33         pushl 12(%esp,1)        /* Push NAME (ptr to struct utsname)  */
34         subl $0x4, %esp         /* Adjust stack pointer.  */
35         DO_CALL (utssys, 3)
36         jb error                /* Test for error.  */
37         addl $0x10, %esp        /* Adjust the stack pointer.  */
38         xorl %eax, %eax         /* Clear return value.  */
39         ret
40 error:  addl $0x10, %esp        /* Adjust the stack pointer.  */
41         jmp syscall_error