summaryrefslogtreecommitdiff
path: root/ace
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-24 17:41:48 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-24 17:41:48 +0000
commit59c542803db9e8a3b907731f38de983632cfb684 (patch)
tree19adfd9bd7023fa8034c0e2d767202f469d5c61e /ace
parent16d4ad11a38f5bbaedc93ccec510eb7e427c76aa (diff)
downloadATCD-59c542803db9e8a3b907731f38de983632cfb684.tar.gz
(ACE_TSS_Emulation): made ACE_TSS_THREAD_MAX public. This is for testing only.
Diffstat (limited to 'ace')
-rw-r--r--ace/OS.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/OS.h b/ace/OS.h
index 6c87ed6febf..38dc9f847f5 100644
--- a/ace/OS.h
+++ b/ace/OS.h
@@ -3111,7 +3111,7 @@ public:
void *arg,
ACE_THR_C_FUNC entry_point = (ACE_THR_C_FUNC) ace_thread_adapter,
ACE_Thread_Manager *tmgr = 0,
- ACE_Thread_Descriptor *td = 0);
+ ACE_Thread_Descriptor *td = 0);
// Constructor.
void *invoke (void);
@@ -4274,11 +4274,11 @@ private:
// Location of current thread's TSS array.
#if ! defined (VXWORKS)
+public:
// This implementation only works if ::thr_self () returns a small
// integer. It is intended for use in testing on Solaris only.
enum { ACE_TSS_THREADS_MAX = 1024 };
-public:
static void **tss_collection_ [ACE_TSS_THREADS_MAX];
// Array, indexed by thread handle, of TSS object arrays. Those
// are indexed by key. This is for testing only.