summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-11 20:15:24 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-05-11 20:15:24 +0000
commitf46c8a94d4343d410d5920bb36072f55d0464143 (patch)
tree62f0fe0350ff16104362d0f31354b3e4fcc86af7
parente8cddbc6cb75ddcb6d4525f844f23a2c68de7fbc (diff)
downloadATCD-f46c8a94d4343d410d5920bb36072f55d0464143.tar.gz
ChangeLogTag:Mon May 11 15:15:24 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
-rw-r--r--ChangeLog-98b6
-rw-r--r--ace/Thread_Manager.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog-98b b/ChangeLog-98b
index 248c87b715c..a39b4396d97 100644
--- a/ChangeLog-98b
+++ b/ChangeLog-98b
@@ -1,3 +1,9 @@
+Mon May 11 15:15:24 1998 Carlos O'Ryan <coryan@cs.wustl.edu>
+
+ * ace/Thread_Manager.h:
+ Removed bogus ACE_INLINE macros in class declaration, they were
+ making the SGI compiler *very* unhappy.
+
Mon May 11 15:11:11 1998 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/OS.cpp (ctime_r): Renamed the fmtstr to
diff --git a/ace/Thread_Manager.h b/ace/Thread_Manager.h
index ed438682806..38e08e8a158 100644
--- a/ace/Thread_Manager.h
+++ b/ace/Thread_Manager.h
@@ -136,8 +136,8 @@ public:
// thread descriptor before it gets fully built. This function is
// only called from ACE_Log_Msg::thr_desc.
- ACE_INLINE void set_next (ACE_Thread_Descriptor *td);
- ACE_INLINE ACE_Thread_Descriptor *get_next (void);
+ void set_next (ACE_Thread_Descriptor *td);
+ ACE_Thread_Descriptor *get_next (void);
// Set/get the <next_> pointer. These are required by the
// ACE_Free_List. ACE_INLINE is specified here because one version
// of g++ couldn't grok this code without it.