OrionLibC
Barry Importing existing Orion LibC 03048a9 (3 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;
}