summaryrefslogtreecommitdiff
path: root/ACE
Commit message (Collapse)AuthorAgeFilesLines
* Mon Mar 15 07:58:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-159-111/+596
| | | | | | | | | | | | | | | | | | | | | | | | | * ace/High_Res_Timer.cpp * ace/High_Res_Timer.h * ace/High_Res_Timer.inl Use 64bit calculations to increase our precision. If you want to have the 32bit calculations, add ACE_USE_WINDOWS_32BIT_HIGH_RES_TIMER_CALCULATIONS as define. If the scoreboard doesn't show any platforms requiring 32bit, we will remove that code before the next micro release goes out Thanks to Alon Diamant <diamant dot alon at gmail dot com> for supplying the patches. This fixes bugzilla 3703. * ace/Timer_Queue_Adapters.cpp * ace/Timer_Queue_Adapters.h * ace/Timer_Queue_Adapters.inl Make it possible to use a customer event handler in ACE_Thread_Timer_Queue_Adapter. Thanks to Alon Diamant <diamant dot alon at gmail dot com> for supplying the patches. This fixes bugzilla 3614 * tests/tests.mpc: * tests/Thread_Timer_Queue_Adapter_Test.cpp: New test for testing custom event handlers in ACE_Thread_Timer_Queue_Adapter. Thanks to Alon Diamant <diamant dot alon at gmail dot com> for creating this new test
* ChangeLogTag: Fri Mar 12 21:53:30 UTC 2010 Adam Mitz <mitza@ociweb.com>mitza2010-03-125-5/+66
|
* Fix typoolli2010-03-121-1/+1
|
* ChangeLogTag: Fri Mar 12 12:09:02 UTC 2010 Olli Savia <ops@iki.fi>olli2010-03-124-76/+80
|
* Thu Mar 11 09:33:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-118-11/+47
| | | | | | | | | | | | | | | | | | | * ace/config-g++-common.h: PPU 4.1.1 for PPC doesn't have atomic builtin support for datatypes of size 1 and 2 * ace/Atomic_Op.h: * ace/Atomic_Op.inl: Added defines to just disable short/unsigned short/bool specializations * tests/run_test.lst: Enable 2610 but mark it as not fixed * ace/Process_Manager.cpp: Layout change * ace/WIN32_Asynch_IO.cpp: Const changes
* Wed Mar 10 10:31:16 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com>vzykov2010-03-103-2/+14
| | | | | | | | * ace/Svc_Handler.cpp: * tests/run_test.lst: Fixed bug#2609 and enabled the test for it. Thanks to Milan Cvetkovic <milan dot cvetkovic at mpathix dot com> for contributing this.
* Tue Mar 9 12:20:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-092-0/+6
| | | | | * include/makeinclude/platform_g++_common.GNU: Added CXX_MACHINE
* ChangeLogTag: Mon Mar 8 15:36:55 UTC 2010 Adam Mitz <mitza@ociweb.com>mitza2010-03-083-4/+12
|
* Mon Mar 8 13:53:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-082-2/+7
| | | | | * ace/Atomic_Op_GCC_T.inl: Fixed gcc warning
* (no commit message)Johnny Willemsen2010-03-081-0/+4
|
* Mon Mar 8 08:35:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-083-0/+118
| | | | | | | * ace/Atomic_Op.h: * ace/Atomic_Op.inl: Added specializations for bool/unsigned short/short, is around 7 times faster than the default atomic op
* Mon Mar 8 08:24:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-082-21/+66
| | | | | * tests/Atomic_Op_Test.cpp: Added tests for short/unsigned short/bool
* (no commit message)Johnny Willemsen2010-03-061-5/+5
|
* (no commit message)Johnny Willemsen2010-03-061-31/+32
|
* Fri Mar 5 14:02:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-052-0/+26
| | | | | * configure.ac: Added test for GCC builtin support
* (no commit message)Johnny Willemsen2010-03-051-0/+2
|
* Fri Mar 5 12:40:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-053-16/+18
| | | | | | | | | | * ace/Atomic_Op.h: * ace/Atomic_Op.inl: We did a benchmark on a FC10 64bit system with the GCC builtin support for long/unsigned long. In a release/inline build the performance results using the GCC builtin support is around 2 times faster than when using the ACE assembly version. When we have the GCC builtin support, we now also going to use that for long/unsigned long.
* (no commit message)Johnny Willemsen2010-03-051-0/+3
|
* Fri Mar 5 12:20:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-059-34/+519
| | | | | | | | | | | | | | | | | | | * ace/Atomic_Op.h: * ace/Atomic_Op.inl: * ace/Atomic_Op_GCC_T.cpp: * ace/Atomic_Op_GCC_T.h: * ace/Atomic_Op_GCC_T.inl: Added new Atomic template for the GCC builtin atomic op support. This is used on PPC64/PPC32/IA64 for int/unsigned int/long/unsigned long. On EM64T we do use this for int/unsigned int, the ACE assembly version for long/unsigned long is faster than the GCC. * ace/config-g++-common.h: Enable the new builtin atomic also for EM64T * ace/ace.mpc: * ace/Makefile.am: Added new files
* Fri Mar 5 11:30:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-052-0/+7
| | | | | * tests/Atomic_Op_Test.cpp: Print the number of iterations
* Fri Mar 5 11:28:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-052-6/+49
| | | | | * tests/Atomic_Op_Test.cpp: Also measure postfix increment/decrement
* Fri Mar 5 11:21:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-052-7/+44
| | | | | * tests/Atomic_Op_Test.cpp: Added more checks to make sure Atomic_Op does work
* ChangeLogTag:Tue Mar 2 21:02:51 UTC 2010 Steve Huston <shuston@riverace.com>Steve Huston2010-03-042-3/+7
|
* Thu Mar 4 09:15:54 UTC 2010 Martin Corino <mcorino@remedy.nl>mcorino2010-03-042-4/+20
| | | | | | | * bin/make_release.py: Fix for problems with creating MPC release tag.
* Thu Mar 4 07:50:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-044-349/+96
| | | | | | | | | | | | | | * tests/Atomic_Op_Test.cpp: Rewritten this test to use a template method so that we can test atomic op easily for various data types * ace/Time_Value.cpp: Layout changes and fixed compile problem with CB2010. This fixes bugzilla 3835, thanks to Jan Kalin <jan dot kalin at zag dot si> for reporting this. * ace/config-win32-borland.h: CB also has long timevalue mismatch
* Thu Mar 4 07:50:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-03-049-131/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * NEWS: Updated for next micro * rpmbuild/ace-tao.spec: Fixed problem with installation of nslist readme * etc/index.html: Added 5.7.7 * docs/Download.html: Updated for 5.7.7 * docs/bczar/bczar.html: Several updates because we now package on a FC12 system * debianbuild/rules: Removed commented out part * bin/make_release.py: Next micro release will not ship msvc71 solutions, it is still supported but the end user should generate the solutions him self. Also WinCE solutions are not generated anymore for CIAO and the autoconf bootstrapping is done much earlier in the release process so when it fails we know early. The hostname check has been removed * bin/diff-builds-and-group-fixed-tests-only.sh: Updated because of micro release
* (no commit message)Johnny Willemsen2010-03-041-0/+5
|
* (no commit message)Johnny Willemsen2010-03-041-2589/+0
|
* (no commit message)Johnny Willemsen2010-03-041-0/+2589
|
* ChangeLogTag:Wed Mar 03 01:18:08 CST 2010 Johnny Willemsen ↵Johnny Willemsen2010-03-0331-50/+54
| | | | <jwillemsen@remedy.nl>
* Mon Mar 1 12:27:30 UTC 2010 Martin Corino <mcorino@remedy.nl>mcorino2010-03-012-0/+8
| | | | | | | * bin/PerlACE/Process_Unix.pm: Fixed 'ps' determination problems.
* (no commit message)Johnny Willemsen2010-02-271-3/+3
|
* ChangeLogTag: Fri Feb 26 19:32:06 UTC 2010 Adam Mitz <mitza@ociweb.com>mitza2010-02-263-2/+23
|
* Fri Feb 26 18:30:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-02-262-9/+7
| | | | | * ace/OS_NS_sys_time.inl: Changed ACE_HAS_CLOCK_REALTIME to ACE_HAS_CLOCK_GETTIME_REALTIME
* ChangeLogTag:Fri Feb 26 16:00:04 UTC 2010 Steve Huston <shuston@riverace.com>Steve Huston2010-02-262-5/+10
|
* ChangeLogTag:Fri Feb 26 15:36:12 UTC 2010 Steve Huston <shuston@riverace.com>Steve Huston2010-02-262-1/+10
|
* Fixed unused arg warning.cleeland2010-02-262-1/+6
|
* ChangeLogTag:Frischmidt2010-02-263-3/+11
|
* ChangeLogTag:Thu Feb 25 21:42:13 UTC 2010 Steve Huston <shuston@riverace.com>Steve Huston2010-02-252-6/+18
|
* Update news for bug 3104cleeland2010-02-251-0/+3
|
* ChangeLogTag: Thu Feb 25 22:07:25 UTC 2010 Chris Cleeland ↵cleeland2010-02-256-12/+147
| | | | <cleeland@ociweb.com>\nBug 3104
* ChangeLogTag:Thu Feb 25 20:33:27 UTC 2010 Steve Huston <shuston@riverace.com>Steve Huston2010-02-252-32/+65
|
* Thu Feb 25 19:11:07 UTC 2010 Steven Stallion <stallions@ociweb.com>stallions2010-02-251-2/+3
|
* Thu Feb 25 19:11:07 UTC 2010 Steven Stallion <stallions@ociweb.com>stallions2010-02-253-2/+12
|
* Thu Feb 25 16:52:20 UTC 2010 Vladimir Zykov <vladimir.zykov@prismtech.com>vzykov2010-02-2510-164/+67
| | | | | | | | | | | | | | * ace/Strategies_T.cpp: * ace/Connector.cpp: * ace/Svc_Handler.cpp: * tests/run_test.lst: * tests/Bug_2609_Regression_Test.cpp: * tests/NonBlocking_Conn_Test.h: * tests/Bug_2610_Regression_Test.cpp: * tests/Process_Strategy_Test.cpp: * tests/NonBlocking_Conn_Test.cpp: Reverted all the changes done in attempt to fix non-blocking connect test and tests for 2609/2610.
* (no commit message)Johnny Willemsen2010-02-251-1/+2
|
* (no commit message)Johnny Willemsen2010-02-252-1/+5
|
* (no commit message)Johnny Willemsen2010-02-251-0/+8
|
* Thu Feb 25 08:10:54 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>Johnny Willemsen2010-02-252-0/+7
| | | | | * ace/config-opensd.h: #define ACE_LACKS_CEILL & ACE_LACKS_FLOORL
* (no commit message)Johnny Willemsen2010-02-252-1/+8
|