Ejemplo n.º 1
0
static uint32_t sys_pipe(uint32_t arg[])
{
	int *fd_store = (int *)arg[0];
	return sysfile_pipe(fd_store);
}
Ejemplo n.º 2
0
static uint32_t
__sys_linux_pipe(uint32_t arg[]) {
    int *fd_store = (int *)arg[0];
    return sysfile_pipe(fd_store)?-1:0;
}