Skip to content

Commit a8293d7

Browse files
committed
ACE+TAO-6_5_23
1 parent 2a2f2ee commit a8293d7

File tree

10 files changed

+191
-46
lines changed

10 files changed

+191
-46
lines changed

ACE/ChangeLogs/ACE-6_5_23

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
commit 340fd6c02b9a2bc50d53eb0688e1bc49db1632a2
2+
Author: Fred Hornsey <[email protected]>
3+
Date: Fri Aug 29 20:45:05 2025 -0500
4+
5+
Time_Value & Floating-point std::chrono::duration
6+
7+
This is a backport of https://github.com/DOCGroup/ACE_TAO/pull/2462
8+
9+
`ACE_Time_Value` currently doesn't accept a `std::chrono::duration` with
10+
`Rep` that's a floating point type because it's using the modulus
11+
operator to separate the microseconds (`duration % seconds(1)`) and
12+
trying to use modulus with floating points causes a compile error.
13+
14+
This changes it to use subtraction from the whole number of seconds
15+
(`duration - sec`) and adds a test for it.
16+
17+
Also:
18+
- Simplify the `-=` and `+=` ops of `ACE_Time_Value`
19+
- Rewrite some of the testing in `Chrono_Test.cpp`.
20+
21+
commit 3332ca36d3fdb6c308226bb3147e807ad8fda659
22+
Author: Adam Mitz <[email protected]>
23+
Date: Tue Sep 2 09:37:43 2025 -0500
24+
25+
Updated NEWS
26+
27+
commit 484f7ee4e074e76c97657eabb77658e3c8b37830
28+
Author: Adam Mitz <[email protected]>
29+
Date: Thu Aug 14 17:01:17 2025 +0000
30+
31+
Thread names on Linux are limited to 15 characters
32+
33+
commit 65d29b2b1649e4662b311a5b7725b3404380908e
34+
Author: Adam Mitz <[email protected]>
35+
Date: Tue Aug 12 09:24:16 2025 -0500
36+
37+
SetThreadDescription with runtime linking
38+
39+
commit f99e412042dd99341b82bbc8ca770c91c59b7e1d
40+
Author: Adam Mitz <[email protected]>
41+
Date: Tue Aug 12 09:39:34 2025 -0500
42+
43+
Revert "Merge pull request #2446 from mitza-oci/ace6-windows-thread-names"
44+
45+
This reverts commit 728e90dedfe1c95c096c7049170446ba16707182, reversing
46+
changes made to 509f4bef5e7e53e5b4d62e2f13197ba93d62469c.
47+
48+
commit 724c7de2ceb100f2b34399830b8e29964a16d81a
49+
Author: Adam Mitz <[email protected]>
50+
Date: Thu Aug 7 12:39:25 2025 -0500
51+
52+
Updated README
53+
54+
commit 7b2999841aaf4f10c66c6d8223c470ad3977d9de
55+
Author: Adam Mitz <[email protected]>
56+
Date: Thu Aug 7 11:35:30 2025 -0500
57+
58+
Added conditional compilation for SetThreadDescription
59+
60+
Older versions of Windows don't support SetThreadDescription.
61+
When building an ACE library that needs to be compatible with these,
62+
set ACE_LACKS_SETTHREADDESCRIPTION in config.h.
63+
64+
This can't be determined from the Windows headers which
65+
include SetThreadDescription unconditionally.
66+
67+
commit 5b3d0571a00b2bda0a74741990d77c75f97cee8f
68+
Author: Adam Mitz <[email protected]>
69+
Date: Wed Jul 23 08:42:57 2025 -0500
70+
71+
Updated ACE tests for Android NDK's Clang
72+
73+
Avoids errors and warnings on this platform
74+
75+
commit 727d7db35d476f1503a701f749e6ffca42c44b38
76+
Author: Fred Hornsey <[email protected]>
77+
Date: Thu Jul 3 15:14:59 2025 -0500
78+
79+
Fixed building ACE for Android with `uses_wchar=1`
80+
81+
Backport of https://github.com/DOCGroup/ACE_TAO/pull/2416
82+
83+
commit d8debd9462e684816bcbea8b6769e7e2ac2e5737
84+
Author: Olli Savia <[email protected]>
85+
Date: Wed Jul 2 10:59:41 2025 +0300
86+
87+
Updated
88+
89+
commit 33c9161b608241aca294aad9e1b7c5b7026a3643
90+
Author: Olli Savia <[email protected]>
91+
Date: Tue Jul 1 11:22:21 2025 +0300
92+
93+
Style fix
94+
95+
commit feb6fcabf2fd188c74314a18a97a8a46a54529c7
96+
Author: Olli Savia <[email protected]>
97+
Date: Sat Jun 28 09:08:35 2025 +0300
98+
99+
Backported TTY_IO enhancements from master branch
100+
101+
commit 41b20cffd4170021b19428ab4168880822c8228e
102+
Author: Johnny Willemsen <[email protected]>
103+
Date: Thu Jun 26 11:41:42 2025 +0200
104+
105+
Prepare for next ace6tao2
106+
107+
* ACE/NEWS:
108+
* ACE/bin/copy-local-script.sh:
109+
* TAO/NEWS:

ACE/PROBLEM-REPORT-FORM

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
4141
Subject: [area]: [synopsis]
4242

43-
ACE VERSION: 6.5.22
43+
ACE VERSION: 6.5.23
4444

4545
HOST MACHINE and OPERATING SYSTEM:
4646
If on Windows based OS's, which version of WINSOCK do you

ACE/VERSION.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
This is ACE version 6.5.22, released Thu Jun 26 11:32:51 CEST 2025
1+
This is ACE version 6.5.23, released Tue Sep 09 08:30:02 CEST 2025
22

33
If you have any problems with or questions about ACE, please send
44
e-mail to the ACE mailing list ([email protected]),

ACE/ace/Version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
#define ACE_MAJOR_VERSION 6
66
#define ACE_MINOR_VERSION 5
7-
#define ACE_MICRO_VERSION 22
8-
#define ACE_BETA_VERSION 22
9-
#define ACE_VERSION "6.5.22"
10-
#define ACE_VERSION_CODE 0x60516
7+
#define ACE_MICRO_VERSION 23
8+
#define ACE_BETA_VERSION 23
9+
#define ACE_VERSION "6.5.23"
10+
#define ACE_VERSION_CODE 0x60517
1111
#define ACE_MAKE_VERSION_CODE(a,b,c) (((a) << 16) + ((b) << 8) + (c))

ACE/debian/control

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Description: makefile, project, and workspace creator
2727
* mpc-ace: generates project files for a single target
2828
* mwc-ace: generates workspace files for a set of projects
2929

30-
Package: libace-6.5.22
30+
Package: libace-6.5.23
3131
Architecture: any
3232
Section: libs
3333
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -45,7 +45,7 @@ Description: C++ network programming framework
4545
Package: libace-dev
4646
Architecture: any
4747
Section: libdevel
48-
Depends: libace-6.5.22 (= ${binary:Version}), ${misc:Depends}
48+
Depends: libace-6.5.23 (= ${binary:Version}), ${misc:Depends}
4949
Suggests: libace-doc, pkg-config
5050
Replaces: mpc-ace (<< 5.6.3-4)
5151
Description: C++ network programming framework - development files
@@ -62,7 +62,7 @@ Description: C++ network programming framework - documentation
6262
This package contains the ACE overview documentation, tutorials,
6363
examples, and information regarding upstream development.
6464

65-
Package: libace-ssl-6.5.22
65+
Package: libace-ssl-6.5.23
6666
Architecture: any
6767
Section: libs
6868
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -73,12 +73,12 @@ Description: ACE secure socket layer library
7373
Package: libace-ssl-dev
7474
Architecture: any
7575
Section: libdevel
76-
Depends: libace-ssl-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), libssl-dev, ${misc:Depends}
76+
Depends: libace-ssl-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), libssl-dev, ${misc:Depends}
7777
Description: ACE secure socket layer library - development files
7878
This package contains the header files and static library for the ACE
7979
SSL library.
8080

81-
Package: libace-rmcast-6.5.22
81+
Package: libace-rmcast-6.5.23
8282
Architecture: any
8383
Section: libs
8484
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -92,12 +92,12 @@ Description: ACE reliable multicast library
9292
Package: libace-rmcast-dev
9393
Architecture: any
9494
Section: libdevel
95-
Depends: libace-rmcast-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
95+
Depends: libace-rmcast-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
9696
Description: ACE reliable multicast library - development files
9797
This package contains the header files and static library for the ACE
9898
reliable multicast library.
9999

100-
Package: libace-tmcast-6.5.22
100+
Package: libace-tmcast-6.5.23
101101
Architecture: any
102102
Section: libs
103103
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -111,12 +111,12 @@ Description: ACE transactional multicast library
111111
Package: libace-tmcast-dev
112112
Architecture: any
113113
Section: libdevel
114-
Depends: libace-tmcast-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
114+
Depends: libace-tmcast-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
115115
Description: ACE transactional multicast library - development files
116116
This package contains the header files and static library for the ACE
117117
transactional multicast library.
118118

119-
Package: libace-htbp-6.5.22
119+
Package: libace-htbp-6.5.23
120120
Architecture: any
121121
Section: libs
122122
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -130,12 +130,12 @@ Description: ACE protocol over HTTP tunneling library
130130
Package: libace-htbp-dev
131131
Architecture: any
132132
Section: libdevel
133-
Depends: libace-htbp-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
133+
Depends: libace-htbp-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
134134
Description: ACE protocol over HTTP tunneling library - development files
135135
This package contains the header files and static library for the ACE
136136
HTBP library.
137137

138-
Package: libace-inet-6.5.22
138+
Package: libace-inet-6.5.23
139139
Architecture: any
140140
Section: libs
141141
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -146,15 +146,15 @@ Description: ACE Inet protocol library
146146
Package: libace-inet-dev
147147
Architecture: any
148148
Section: libdevel
149-
Depends: libace-inet-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
149+
Depends: libace-inet-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
150150
Description: ACE Inet protocol library - development files
151151
This package contains the header files and static library for the ACE
152152
Inet protocol library.
153153

154-
Package: libace-inet-ssl-6.5.22
154+
Package: libace-inet-ssl-6.5.23
155155
Architecture: any
156156
Section: libs
157-
Depends: libace-inet-6.5.22, libace-ssl-6.5.22, ${shlibs:Depends}, ${misc:Depends}
157+
Depends: libace-inet-6.5.23, libace-ssl-6.5.23, ${shlibs:Depends}, ${misc:Depends}
158158
Description: ACE SSL-enabled Inet protocol library
159159
This package provides an ACE addon library for clients (and possibly
160160
servers at some point) using Inet protocols which support SSL, such as
@@ -163,7 +163,7 @@ Description: ACE SSL-enabled Inet protocol library
163163
Package: libace-inet-ssl-dev
164164
Architecture: any
165165
Section: libdevel
166-
Depends: libace-inet-ssl-6.5.22 (= ${binary:Version}), libace-inet-dev (= ${binary:Version}), libace-ssl-dev (= ${binary:Version}), ${misc:Depends}
166+
Depends: libace-inet-ssl-6.5.23 (= ${binary:Version}), libace-inet-dev (= ${binary:Version}), libace-ssl-dev (= ${binary:Version}), ${misc:Depends}
167167
Description: ACE SSL-enabled Inet protocol library - development files
168168
This package contains the header files and static library for the ACE
169169
SSL-enabled Inet protocol library.
@@ -180,7 +180,7 @@ Description: ACE perfect hash function generator
180180
basically the same options and functionality. ace_gperf simply takes
181181
advantage of some of the features provided by the ACE library.
182182

183-
Package: libacexml-6.5.22
183+
Package: libacexml-6.5.23
184184
Architecture: any
185185
Section: libs
186186
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -196,12 +196,12 @@ Package: libacexml-dev
196196
Architecture: any
197197
Section: libdevel
198198
Replaces: libace-dev (<< 5.7.7-4)
199-
Depends: libacexml-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
199+
Depends: libacexml-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
200200
Description: ACE SAX based XML parsing library - development files
201201
This package contains the header files and static library for the ACE
202202
XML parsing library.
203203

204-
Package: libace-xml-utils-6.5.22
204+
Package: libace-xml-utils-6.5.23
205205
Architecture: any
206206
Section: libs
207207
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -215,12 +215,12 @@ Package: libace-xml-utils-dev
215215
Architecture: any
216216
Section: libdevel
217217
Replaces: libace-dev (<< 5.7.7-4)
218-
Depends: libace-xml-utils-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}, libxerces-c-dev
218+
Depends: libace-xml-utils-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}, libxerces-c-dev
219219
Description: ACE XML utility classes and methods - development files
220220
This package contains the header files and static library for the ACE XML
221221
Utils library
222222

223-
Package: libkokyu-6.5.22
223+
Package: libkokyu-6.5.23
224224
Architecture: any
225225
Section: libs
226226
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -234,12 +234,12 @@ Description: ACE scheduling and dispatching library
234234
Package: libkokyu-dev
235235
Architecture: any
236236
Section: libdevel
237-
Depends: libkokyu-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
237+
Depends: libkokyu-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
238238
Description: ACE scheduling and dispatching library - development files
239239
This package contains the header files and static library for the ACE
240240
scheduling and dispatching library.
241241

242-
Package: libace-xtreactor-6.5.22
242+
Package: libace-xtreactor-6.5.23
243243
Architecture: any
244244
Section: libs
245245
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -257,12 +257,12 @@ Description: ACE-GUI reactor integration for Xt
257257
Package: libace-xtreactor-dev
258258
Architecture: any
259259
Section: libdevel
260-
Depends: libace-xtreactor-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), libxt-dev (>= 4.3.0), ${misc:Depends}
260+
Depends: libace-xtreactor-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), libxt-dev (>= 4.3.0), ${misc:Depends}
261261
Description: ACE-GUI reactor integration for Xt - development files
262262
This package contains header files and static library for the ACE-Xt
263263
reactor integration.
264264

265-
Package: libace-tkreactor-6.5.22
265+
Package: libace-tkreactor-6.5.23
266266
Architecture: any
267267
Section: libs
268268
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -281,12 +281,12 @@ Description: ACE-GUI reactor integration for Tk
281281
Package: libace-tkreactor-dev
282282
Architecture: any
283283
Section: libdevel
284-
Depends: libace-tkreactor-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), tk-dev (>= 8.5), ${misc:Depends}
284+
Depends: libace-tkreactor-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), tk-dev (>= 8.5), ${misc:Depends}
285285
Description: ACE-GUI reactor integration for Tk - development files
286286
This package contains header files and static library for the ACE-Tk
287287
reactor integration.
288288

289-
Package: libace-flreactor-6.5.22
289+
Package: libace-flreactor-6.5.23
290290
Architecture: any
291291
Section: libs
292292
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -304,12 +304,12 @@ Description: ACE-GUI reactor integration for FLTK
304304
Package: libace-flreactor-dev
305305
Architecture: any
306306
Section: libdevel
307-
Depends: libace-flreactor-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfltk1.1-dev (>= 1.1.4), ${misc:Depends}
307+
Depends: libace-flreactor-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfltk1.1-dev (>= 1.1.4), ${misc:Depends}
308308
Description: ACE-GUI reactor integration for FLTK - development files
309309
This package contains header files and static library for the ACE-FLTK
310310
reactor integration.
311311

312-
Package: libace-foxreactor-6.5.22
312+
Package: libace-foxreactor-6.5.23
313313
Architecture: any
314314
Section: libs
315315
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -326,7 +326,7 @@ Description: ACE-GUI reactor integration for FOX
326326
Package: libace-foxreactor-dev
327327
Architecture: any
328328
Section: libdevel
329-
Depends: libace-foxreactor-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfox-1.6-dev, ${misc:Depends}
329+
Depends: libace-foxreactor-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), libfox-1.6-dev, ${misc:Depends}
330330
Description: ACE-GUI reactor integration for FOX - development files
331331
This package contains header files and static library for the ACE-FOX
332332
reactor integration.
@@ -343,7 +343,7 @@ Description: ACE network service implementations
343343
files to link the various ACE network services together, either
344344
statically or dynamically, and form complete server programs.
345345

346-
Package: libnetsvcs-6.5.22
346+
Package: libnetsvcs-6.5.23
347347
Architecture: any
348348
Section: libs
349349
Depends: ${shlibs:Depends}, ${misc:Depends}
@@ -357,7 +357,7 @@ Description: ACE network service implementations - libraries
357357
Package: libnetsvcs-dev
358358
Architecture: any
359359
Section: libdevel
360-
Depends: libnetsvcs-6.5.22 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
360+
Depends: libnetsvcs-6.5.23 (= ${binary:Version}), libace-dev (= ${binary:Version}), ${misc:Depends}
361361
Description: ACE network service implementations - development files
362362
ACE network services provide reusable components for common
363363
distributed system tasks such as logging, naming, locking, and time

ACE/rpmbuild/ace-tao.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Set the version number here.
2-
%define ACEVER 6.5.22
3-
%define TAOVER 2.5.22
2+
%define ACEVER 6.5.23
3+
%define TAOVER 2.5.23
44

55
# Conditional build
66
# Default values are

0 commit comments

Comments
 (0)