diff options
author | Elliott Hughes <enh@google.com> | 2014-11-07 16:07:13 -0800 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2014-11-07 16:48:27 -0800 |
commit | b86a4c7f651ab347611847e4f5a1a50d6ee1827b (patch) | |
tree | 24d8b5623c4ee06e0b6787b68e3217042a99cb69 /libc/arch-x86_64 | |
parent | 2ed9ee1e938a94b563ab700dc5017a968d2591ad (diff) | |
download | bionic-b86a4c7f651ab347611847e4f5a1a50d6ee1827b.zip bionic-b86a4c7f651ab347611847e4f5a1a50d6ee1827b.tar.gz bionic-b86a4c7f651ab347611847e4f5a1a50d6ee1827b.tar.bz2 |
Add sethostname(2).
Not very useful, but helps building stuff like toybox out of the box.
Change-Id: I110e39030452bd093a84278e019c5752d293718d
Diffstat (limited to 'libc/arch-x86_64')
-rw-r--r-- | libc/arch-x86_64/syscalls/sethostname.S | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libc/arch-x86_64/syscalls/sethostname.S b/libc/arch-x86_64/syscalls/sethostname.S new file mode 100644 index 0000000..4bcd12d --- /dev/null +++ b/libc/arch-x86_64/syscalls/sethostname.S @@ -0,0 +1,15 @@ +/* Generated by gensyscalls.py. Do not edit. */ + +#include <private/bionic_asm.h> + +ENTRY(sethostname) + movl $__NR_sethostname, %eax + syscall + cmpq $-MAX_ERRNO, %rax + jb 1f + negl %eax + movl %eax, %edi + call __set_errno_internal +1: + ret +END(sethostname) |