Ejemplo n.º 1
0
SYSCALL_DEFINE1(eventfd, unsigned int, count)
{
	return sys_eventfd2(count, 0);
}
Ejemplo n.º 2
0
asmlinkage long sys_eventfd(unsigned int count)
{
	return sys_eventfd2(count, 0);
}