OrionLibC
Barry Importing existing Orion LibC 03048a9 (2 years, 2 months ago)diff --git a/time/time.c b/time/time.c new file mode 100644 index 0000000..dd43c31 --- /dev/null +++ b/time/time.c @@ -0,0 +1,30 @@ +#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; +}