summaryrefslogtreecommitdiff
path: root/ACE/ace/os_include/sys
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2012-08-21 12:22:17 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2012-08-21 12:22:17 +0000
commit89321848196284029a3d634eabaa3852b3f0dcd0 (patch)
tree1306cd1cb01aec2d7d7f1fd7bc7f20e17d1577db /ACE/ace/os_include/sys
parent406ae15d17dd2dce079d26dd2f0401602d779c90 (diff)
downloadATCD-89321848196284029a3d634eabaa3852b3f0dcd0.tar.gz
Tue Aug 21 12:20:43 UTC 2012 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/os_include/sys/os_types.h: Fixed HPUX problem
Diffstat (limited to 'ACE/ace/os_include/sys')
-rw-r--r--ACE/ace/os_include/sys/os_types.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/ACE/ace/os_include/sys/os_types.h b/ACE/ace/os_include/sys/os_types.h
index 4c9b45f9e34..bbd5e6736fa 100644
--- a/ACE/ace/os_include/sys/os_types.h
+++ b/ACE/ace/os_include/sys/os_types.h
@@ -50,15 +50,15 @@ typedef double ACE_timer_t;
// todo: don't forget to clean this up! ;-)
#if !defined (ACE_HAS_CLOCK_GETTIME) && !(defined (_CLOCKID_T_) || defined (_CLOCKID_T))
typedef int clockid_t;
-#endif /* ! ACE_HAS_CLOCK_GETTIME && ! _CLOCKID_T_ */
-#if !defined (CLOCK_REALTIME)
-# define CLOCK_REALTIME 0
-#endif /* CLOCK_REALTIME */
+# if !defined (CLOCK_REALTIME)
+# define CLOCK_REALTIME 0
+# endif /* CLOCK_REALTIME */
-#if !defined (CLOCK_MONOTONIC)
-# define CLOCK_MONOTONIC 1
-#endif /* CLOCK_MONOTONIC */
+# if !defined (CLOCK_MONOTONIC)
+# define CLOCK_MONOTONIC 1
+# endif /* CLOCK_MONOTONIC */
+#endif /* ! ACE_HAS_CLOCK_GETTIME && ! _CLOCKID_T_ */
#if defined (ACE_LACKS_DEV_T)
typedef unsigned int dev_t;