Skip to content

Commit 3652ab2

Browse files
committed
Merge branch 'jwi-vs2022bug' of https://github.com/jwillemsen/ATCD into jwi-vs2022bug
2 parents 8488daf + aa8b928 commit 3652ab2

File tree

6 files changed

+10
-7
lines changed

6 files changed

+10
-7
lines changed

ACE/NEWS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
USER VISIBLE CHANGES BETWEEN ACE-8.0.3 and ACE-8.0.4
22
====================================================
33

4+
. Fixed compile errors in the ACE core when compiled without thread
5+
support (only core of ACE compiled and not tested)
6+
47
USER VISIBLE CHANGES BETWEEN ACE-8.0.2 and ACE-8.0.3
58
====================================================
69

ACE/ace/Priority_Reactor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ACE_BEGIN_VERSIONED_NAMESPACE_DECL
77
using QUEUE_ITERATOR = ACE_Unbounded_Queue_Iterator<ACE_Event_Tuple>;
88
// Its iterator.
99

10-
using TUPLE_ALLOCATOR = ACE_Cached_Allocator<ACE_Node<ACE_Event_Tuple>, ACE_MT_SYNCH::NULL_MUTEX>;
10+
using TUPLE_ALLOCATOR = ACE_Cached_Allocator<ACE_Node<ACE_Event_Tuple>, ACE_SYNCH_NULL_MUTEX>;
1111
// Defines the memory allocator used, no need for locking because it
1212
// is only used in one thread of control.
1313

ACE/ace/Service_Config.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ ACE_Threading_Helper<ACE_Null_Mutex>::get ()
9898
* know that upon process exit the SC will still be automaticaly and explicitly
9999
* closed by @c ACE_Object_Manager::fini().
100100
*/
101-
using ACE_SERVICE_CONFIG_SINGLETON = ACE_Unmanaged_Singleton<ACE_Service_Config, ACE_MT_SYNCH::RECURSIVE_MUTEX>;
101+
using ACE_SERVICE_CONFIG_SINGLETON = ACE_Unmanaged_Singleton<ACE_Service_Config, ACE_SYNCH_RECURSIVE_MUTEX>;
102102

103103

104104
/// ctor

ACE/ace/Service_Types.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@
1111

1212
ACE_BEGIN_VERSIONED_NAMESPACE_DECL
1313

14-
using MT_Stream = ACE_Stream<ACE_MT_SYNCH>;
15-
using MT_Module = ACE_Module<ACE_MT_SYNCH>;
16-
using MT_Task = ACE_Task<ACE_MT_SYNCH>;
14+
using MT_Stream = ACE_Stream<ACE_SYNCH>;
15+
using MT_Module = ACE_Module<ACE_SYNCH>;
16+
using MT_Task = ACE_Task<ACE_SYNCH>;
1717

1818
ACE_ALLOC_HOOK_DEFINE(ACE_Service_Type_Impl)
1919

ACE/ace/Thread_Manager.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1487,7 +1487,7 @@ ACE_Thread_Manager::join (ACE_thread_t tid, ACE_THR_FUNC_RETURN *status)
14871487
if (ACE_OS::thr_equal (biter.next ()->thr_id_, tid))
14881488
{
14891489
std::unique_ptr<ACE_Thread_Descriptor_Base> tdbl (biter.advance_and_remove (false));
1490-
ace_mon.release();
1490+
ACE_MT (ace_mon.release());
14911491
#ifndef ACE_LACKS_PTHREAD_JOIN
14921492
if (ACE_Thread::join (tdbl->thr_handle_, status) == -1)
14931493
{

TAO/TAO_IDL/ast/ast_map.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ AST_Map::destroy ()
377377
AST_Annotation_Appls &
378378
AST_Map::key_type_annotations ()
379379
{
380-
return value_type_annotations_;
380+
return key_type_annotations_;
381381
}
382382

383383
void

0 commit comments

Comments
 (0)