summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-22 19:01:50 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-09-22 19:01:50 +0000
commit4e7957712aad558c17c605b527df887217b920a5 (patch)
treea70b7c6b96e8fda3170b2831279f2aed32f12f69
parent3ce5d17f1e181be406140f23492ca8c7d2ab9762 (diff)
downloadATCD-4e7957712aad558c17c605b527df887217b920a5.tar.gz
ChangeLogTag:Tue Sep 22 13:58:06 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--ChangeLog-98b7
-rw-r--r--ace/config-irix6.x-g++.h5
2 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index 2b701ecab71..ebbf887599e 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,10 @@
+Tue Sep 22 13:58:06 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * ace/config-irix6.x-g++.h:
+ Added some missing defines, thanks to JM Strauss
+ <jms97@club-internet.fr> for pointing them out. Also fixed a
+ test for the N32 ABI, it said _NABI32 and should be _ABIN32.
+
Tue Sep 22 11:42:17 1998 David L. Levine <levine@cs.wustl.edu>
* ace/config-lynxos.h: added ACE_HAS_POWERPC_TIMER with
diff --git a/ace/config-irix6.x-g++.h b/ace/config-irix6.x-g++.h
index dd9abd3b933..50e45ab5b9d 100644
--- a/ace/config-irix6.x-g++.h
+++ b/ace/config-irix6.x-g++.h
@@ -15,7 +15,7 @@
#if defined (_MIPS_SIM) // 6.X System
# if defined (_ABI64) && (_MIPS_SIM == _ABI64)
# define ACE_SIZEOF_LONG_DOUBLE 16
-# elif defined (_NABI32) && (_MIPS_SIM == _NABI32)
+# elif defined (_ABIN32) && (_MIPS_SIM == _ABIN32)
# define ACE_SIZEOF_LONG_DOUBLE 16
# elif defined (_ABIO32) && (_MIPS_SIM == _ABIO32)
# define ACE_SIZEOF_LONG_DOUBLE 8
@@ -155,6 +155,9 @@
// Platform supports IP multicast
#define ACE_HAS_IP_MULTICAST
+#define ACE_HAS_TID_T
+#define ACE_LACKS_RWLOCK_T
+
// Turns off the tracing feature.
#if !defined (ACE_NTRACE)
#define ACE_NTRACE 1