mirror of
https://github.com/fluencelabs/musl
synced 2025-07-04 17:12:04 +00:00
global cleanup to use the new syscall interface
This commit is contained in:
@ -3,13 +3,5 @@
|
||||
|
||||
int setitimer(int which, const struct itimerval *new, struct itimerval *old)
|
||||
{
|
||||
int ret;
|
||||
long knew[4] = {
|
||||
new->it_interval.tv_sec, new->it_interval.tv_usec,
|
||||
new->it_value.tv_sec, new->it_value.tv_usec
|
||||
}, kold[4];
|
||||
|
||||
if (!(ret = syscall3(__NR_setitimer, which, (long)&knew, old ? (long)&kold : 0)) && old)
|
||||
*old = (struct itimerval){ { kold[0], kold[1] }, { kold[2], kold[3] } };
|
||||
return ret;
|
||||
return syscall(SYS_setitimer, which, new, old);
|
||||
}
|
||||
|
Reference in New Issue
Block a user