summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/time.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 16:04:31 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-05-29 16:04:31 +0000
commit974ff40e575af098e4c0de168721333a764ec8ca (patch)
tree89525f00ebffc57fb7f589f1bf75299c014f7c70 /c/src/exec/posix/src/time.c
parentsplit the inclusion of "EXTERN" data based on whether it was sapi, (diff)
downloadrtems-974ff40e575af098e4c0de168721333a764ec8ca.tar.bz2
renamed signal.c to psignal.c to avoid naming problems.
added mp stubs to cond.c and mutex.c to eliminate link errors. added pthread_exit to pthread.c
Diffstat (limited to 'c/src/exec/posix/src/time.c')
-rw-r--r--c/src/exec/posix/src/time.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/c/src/exec/posix/src/time.c b/c/src/exec/posix/src/time.c
index 6c2faf65dc..24642c8757 100644
--- a/c/src/exec/posix/src/time.c
+++ b/c/src/exec/posix/src/time.c
@@ -18,6 +18,17 @@
(4 * TOD_SECONDS_PER_DAY))
/*
+ * _POSIX_Time_Spec_to_interval
+ */
+
+Watchdog_Interval _POSIX_Time_Spec_to_interval(
+ const struct timespec *time
+)
+{
+ return POSIX_NOT_IMPLEMENTED();
+}
+
+/*
* 4.5.1 Get System Time, P1003.1b-1993, p. 91
*/