blob: 15dc51c9996fdd0b9ba966b07e3e7b15135df826 [file] [log] [blame]
Elliott Hughes887e1142014-01-02 12:05:50 -08001/* Generated by gensyscalls.py. Do not edit. */
2
3#include <private/bionic_asm.h>
4
Dan Alberte35fd482014-08-08 15:19:20 -07005 .hidden __set_errno
6
Elliott Hughes887e1142014-01-02 12:05:50 -08007ENTRY(setns)
8 movl $__NR_setns, %eax
9 syscall
10 cmpq $-MAX_ERRNO, %rax
11 jb 1f
12 negl %eax
13 movl %eax, %edi
14 call __set_errno
Elliott Hughes887e1142014-01-02 12:05:50 -0800151:
16 ret
17END(setns)