summaryrefslogtreecommitdiff
path: root/ace/os_include/os_time.h
diff options
context:
space:
mode:
Diffstat (limited to 'ace/os_include/os_time.h')
-rw-r--r--ace/os_include/os_time.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/ace/os_include/os_time.h b/ace/os_include/os_time.h
index a6a4fabe69e..78300ba24be 100644
--- a/ace/os_include/os_time.h
+++ b/ace/os_include/os_time.h
@@ -53,24 +53,6 @@ using std::timezone;
using std::difftime;
# endif /* ACE_USES_STD_NAMESPACE_FOR_STDC_LIB */
-# if !defined (ACE_HAS_POSIX_TIME) && !defined (ACE_PSOS)
-// Definition per POSIX.
-typedef struct timespec
-{
- /// Seconds
- time_t tv_sec;
- /// Nanoseconds
- long tv_nsec;
-} timespec_t;
-# elif defined (ACE_HAS_BROKEN_POSIX_TIME)
-// OSF/1 defines struct timespec in <sys/timers.h> - Tom Marrs
-# include /**/ <sys/timers.h>
-# endif /* !ACE_HAS_POSIX_TIME */
-
-# if defined(ACE_LACKS_TIMESPEC_T)
-typedef struct timespec timespec_t;
-# endif /* ACE_LACKS_TIMESPEC_T */
-
// Place all additions (especially function declarations) within extern "C" {}
#ifdef __cplusplus
extern "C"