fxlibc/src/posix/unistd/target/vhex-sh/setpgid.S

21 lines
420 B
ArmAsm
Raw Normal View History

#ifdef __SUPPORT_VHEX_KERNEL
2021-05-09 17:34:00 +02:00
#include <bits/asm/unistd_32.h>
.text
.global _setpgid
.type _setpgid, @function
.align 2
/*
** extern int setpgid(pid_t __pid, pid_t __pgid);
** Set the process group ID of the process matching PID to PGID.
** If PID is zero, the current process's process group ID is set.
** If PGID is zero, the process ID of the process is used.
*/
_setpgid:
trapa #__NR_setpgid
rts
nop
.end
#endif