This lets us move all the ARM syscall stubs over to the kernel <asm/unistd.h>. Our generated <sys/linux-syscalls.h> is now unused, but I'll remove that in a later change. Change-Id: Ie5ff2cc4abce1938576af7cbaef615a79c7f310d
		
			
				
	
	
		
			16 lines
		
	
	
		
			321 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			321 B
		
	
	
	
		
			ArmAsm
		
	
	
	
	
	
/* autogenerated by gensyscalls.py */
 | 
						|
#include <asm/unistd.h>
 | 
						|
#include <linux/err.h>
 | 
						|
#include <machine/asm.h>
 | 
						|
 | 
						|
ENTRY(setgroups)
 | 
						|
    mov     ip, r7
 | 
						|
    ldr     r7, =__NR_setgroups32
 | 
						|
    swi     #0
 | 
						|
    mov     r7, ip
 | 
						|
    cmn     r0, #(MAX_ERRNO + 1)
 | 
						|
    bxls    lr
 | 
						|
    neg     r0, r0
 | 
						|
    b       __set_errno
 | 
						|
END(setgroups)
 |