Linux Audio

Check our new training course

Loading...
1
2
3
4
5
6
7
#include <sys/time.h>
#include "syscall.h"

int getitimer(int which, struct itimerval *old)
{
	return syscall(SYS_getitimer, which, old);
}