BarryServer : Git

All the code for all my projects
// BarryServer : Git / OrionLibC / blob / fd1ac463b480044ea9b8ae4fa3f56a73b00e2ed3 / time / time.c

// Related

OrionLibC

Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)
#include <sys/syscall.h>
#include <sys/times.h>
#include <time.h>
#include <errno.h>

/* Get epoch time */
time_t
time(time_t *tloc)
{
	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_TIME),
	             "c" (1), "S" (&tloc));
	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}

/* Get process times */
clock_t
times(Times *buf)
{
	int ret;
	asm volatile("int $0x80" : "=a" (ret) : "0" (SYSCALL_TIMES),
	             "c" (1), "S" (&buf));
	if (ret >= 0)
		return ret;
	errno = -ret;
	return -1;
}