From a27d2baa0c1a2ec70f47ea9199b1dd6762c8a349 Mon Sep 17 00:00:00 2001 From: The Android Open Source Project Date: Tue, 21 Oct 2008 07:00:00 -0700 Subject: Initial Contribution --- libc/arch-x86/syscalls/getpgid.S | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 libc/arch-x86/syscalls/getpgid.S (limited to 'libc/arch-x86/syscalls/getpgid.S') diff --git a/libc/arch-x86/syscalls/getpgid.S b/libc/arch-x86/syscalls/getpgid.S new file mode 100644 index 0000000..ca1e659 --- /dev/null +++ b/libc/arch-x86/syscalls/getpgid.S @@ -0,0 +1,23 @@ +/* autogenerated by gensyscalls.py */ +#include + + .text + .type getpgid, @function + .globl getpgid + .align 4 + +getpgid: + pushl %ebx + mov 8(%esp), %ebx + movl $__NR_getpgid, %eax + int $0x80 + cmpl $-129, %eax + jb 1f + negl %eax + pushl %eax + call __set_errno + addl $4, %esp + orl $-1, %eax +1: + popl %ebx + ret -- cgit v1.1