diff options
Diffstat (limited to 'src/sys/time')
| -rw-r--r-- | src/sys/time/FD_CLR.h | 5 | ||||
| -rw-r--r-- | src/sys/time/FD_ISSET.h | 5 | ||||
| -rw-r--r-- | src/sys/time/FD_SET.h | 5 | ||||
| -rw-r--r-- | src/sys/time/FD_SETSIZE.h | 5 | ||||
| -rw-r--r-- | src/sys/time/FD_ZERO.h | 5 | ||||
| -rw-r--r-- | src/sys/time/ITIMER_PROF.h | 5 | ||||
| -rw-r--r-- | src/sys/time/ITIMER_REAL.h | 5 | ||||
| -rw-r--r-- | src/sys/time/ITIMER_VIRTUAL.h | 5 | ||||
| -rw-r--r-- | src/sys/time/fd_set.h | 9 | ||||
| -rw-r--r-- | src/sys/time/getitimer.c | 10 | ||||
| -rw-r--r-- | src/sys/time/gettimeofday.c | 10 | ||||
| -rw-r--r-- | src/sys/time/select.c | 9 | ||||
| -rw-r--r-- | src/sys/time/setitimer.c | 10 | ||||
| -rw-r--r-- | src/sys/time/struct_itimerval.h | 11 | ||||
| -rw-r--r-- | src/sys/time/struct_timeval.h | 10 | ||||
| -rw-r--r-- | src/sys/time/time_t.ref | 3 | ||||
| -rw-r--r-- | src/sys/time/utimes.c | 10 |
17 files changed, 0 insertions, 122 deletions
diff --git a/src/sys/time/FD_CLR.h b/src/sys/time/FD_CLR.h deleted file mode 100644 index f2ccc825..00000000 --- a/src/sys/time/FD_CLR.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define FD_CLR /* TODO */ -/* -XOPEN(400) -*/ diff --git a/src/sys/time/FD_ISSET.h b/src/sys/time/FD_ISSET.h deleted file mode 100644 index ee5876f9..00000000 --- a/src/sys/time/FD_ISSET.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define FD_ISSET /* TODO */ -/* -XOPEN(400) -*/ diff --git a/src/sys/time/FD_SET.h b/src/sys/time/FD_SET.h deleted file mode 100644 index b39f3d9b..00000000 --- a/src/sys/time/FD_SET.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define FD_SET /* TODO */ -/* -XOPEN(400) -*/ diff --git a/src/sys/time/FD_SETSIZE.h b/src/sys/time/FD_SETSIZE.h deleted file mode 100644 index 21119138..00000000 --- a/src/sys/time/FD_SETSIZE.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define FD_SETSIZE /* TODO */ -/* -XOPEN(400) -*/ diff --git a/src/sys/time/FD_ZERO.h b/src/sys/time/FD_ZERO.h deleted file mode 100644 index 1e800098..00000000 --- a/src/sys/time/FD_ZERO.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define FD_ZERO /* TIME */ -/* -XOPEN(400) -*/ diff --git a/src/sys/time/ITIMER_PROF.h b/src/sys/time/ITIMER_PROF.h deleted file mode 100644 index 0a0e9107..00000000 --- a/src/sys/time/ITIMER_PROF.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define ITIMER_PROF 2 -/* -XOPEN(400) -*/ diff --git a/src/sys/time/ITIMER_REAL.h b/src/sys/time/ITIMER_REAL.h deleted file mode 100644 index f21a5f58..00000000 --- a/src/sys/time/ITIMER_REAL.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define ITIMER_REAL 0 -/* -XOPEN(400) -*/ diff --git a/src/sys/time/ITIMER_VIRTUAL.h b/src/sys/time/ITIMER_VIRTUAL.h deleted file mode 100644 index 382cb43b..00000000 --- a/src/sys/time/ITIMER_VIRTUAL.h +++ /dev/null @@ -1,5 +0,0 @@ -#include <sys/time.h> -#define ITIMER_VIRTUAL 1 -/* -XOPEN(400) -*/ diff --git a/src/sys/time/fd_set.h b/src/sys/time/fd_set.h deleted file mode 100644 index c86afcac..00000000 --- a/src/sys/time/fd_set.h +++ /dev/null @@ -1,9 +0,0 @@ -#include <sys/time.h> - -typedef struct { - long fds_bits[]; -} fd_set; - -/* -XOPEN(400) -*/ diff --git a/src/sys/time/getitimer.c b/src/sys/time/getitimer.c deleted file mode 100644 index 4bbc55b7..00000000 --- a/src/sys/time/getitimer.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <sys/time.h> - -int getitimer(int which, struct itimerval *value) -{ - return which; -} - -/* -XOPEN(400) -*/ diff --git a/src/sys/time/gettimeofday.c b/src/sys/time/gettimeofday.c deleted file mode 100644 index 0cd2061f..00000000 --- a/src/sys/time/gettimeofday.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <sys/time.h> - -int gettimeofday(struct timeval *restrict tp, void *restrict tzp) -{ - return 0; -} - -/* -XOPEN(400) -*/ diff --git a/src/sys/time/select.c b/src/sys/time/select.c deleted file mode 100644 index a75dc8b5..00000000 --- a/src/sys/time/select.c +++ /dev/null @@ -1,9 +0,0 @@ -#include <sys/time.h> - -int select(int nfds , fd_set * readfds , fd_set * writefds , fd_set * errorfds , struct timeval * timeout ) -{ -} - -/* -XOPEN(400) -*/ diff --git a/src/sys/time/setitimer.c b/src/sys/time/setitimer.c deleted file mode 100644 index d3f7dc3a..00000000 --- a/src/sys/time/setitimer.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <sys/time.h> - -int setitimer(int which, const struct itimerval *restrict value, struct itimerval *restrict ovalue) -{ - return which; -} - -/* -XOPEN(400) -*/ diff --git a/src/sys/time/struct_itimerval.h b/src/sys/time/struct_itimerval.h deleted file mode 100644 index c19ed081..00000000 --- a/src/sys/time/struct_itimerval.h +++ /dev/null @@ -1,11 +0,0 @@ -#include <sys/time.h> - -struct itimerval { - struct timeval it_interval; - struct timeval it_value; -}; - -/* -XOPEN(400) -*/ - diff --git a/src/sys/time/struct_timeval.h b/src/sys/time/struct_timeval.h deleted file mode 100644 index 00d1989b..00000000 --- a/src/sys/time/struct_timeval.h +++ /dev/null @@ -1,10 +0,0 @@ -#include <sys/time.h> - -struct timeval { - time_t tv_sec; - suseconds_t tv_usec; -}; - -/* -XOPEN(400) -*/ diff --git a/src/sys/time/time_t.ref b/src/sys/time/time_t.ref deleted file mode 100644 index 593a55ec..00000000 --- a/src/sys/time/time_t.ref +++ /dev/null @@ -1,3 +0,0 @@ -#include <sys/time.h> -REFERENCE(time/time_t.c) -XOPEN(400) diff --git a/src/sys/time/utimes.c b/src/sys/time/utimes.c deleted file mode 100644 index 502f2b5b..00000000 --- a/src/sys/time/utimes.c +++ /dev/null @@ -1,10 +0,0 @@ -#include <sys/time.h> - -int utimes(const char *path, const struct timeval times[2]) -{ - return 0; -} - -/* -XOPEN(400) -*/ |
