BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / 11f4683b13d097219efe4887820b96d54ffee02c / unistd / pipe.c

// Related

OrionLibC

Barry Updating libc for pipes and signals ad9b6af (2 years, 2 months ago)
#include <sys/syscall.h>
#include <errno.h>

/* Close a file */
int
pipe(int pipefd[2])
{
	int *pfd = pipefd;

	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_PIPE),
	             "c" (1), "S" (&pfd));

	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}