platform_bionic/libc/arch-x86/syscalls/sched_yield.S

21 lines
389 B
ArmAsm
Raw Normal View History

/* Generated by gensyscalls.py. Do not edit. */
#include <private/bionic_asm.h>
ENTRY(sched_yield)
pushl %ebx
mov 8(%esp), %ebx
movl $__NR_sched_yield, %eax
int $0x80
cmpl $-MAX_ERRNO, %eax
jb 1f
negl %eax
pushl %eax
call __set_errno
addl $4, %esp
orl $-1, %eax
1:
popl %ebx
ret
END(sched_yield)