Home | History | Annotate | Download | only in syscalls
      1 /* Generated by gensyscalls.py. Do not edit. */
      2 
      3 #include <private/bionic_asm.h>
      4 
      5 ENTRY(pipe2)
      6     pushl   %ebx
      7     .cfi_def_cfa_offset 8
      8     .cfi_rel_offset ebx, 0
      9     pushl   %ecx
     10     .cfi_adjust_cfa_offset 4
     11     .cfi_rel_offset ecx, 0
     12 
     13     call    __kernel_syscall
     14     pushl   %eax
     15     .cfi_adjust_cfa_offset 4
     16     .cfi_rel_offset eax, 0
     17 
     18     mov     16(%esp), %ebx
     19     mov     20(%esp), %ecx
     20     movl    $__NR_pipe2, %eax
     21     call    *(%esp)
     22     addl    $4, %esp
     23 
     24     cmpl    $-MAX_ERRNO, %eax
     25     jb      1f
     26     negl    %eax
     27     pushl   %eax
     28     call    __set_errno_internal
     29     addl    $4, %esp
     30 1:
     31     popl    %ecx
     32     popl    %ebx
     33     ret
     34 END(pipe2)
     35