📄 input
字号:
Sun Mar 18 08:31:34 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* examples/IPC_SAP/FILE_SAP/client.cpp (main): Added a couple of
casts so that the arguments passed to printf() will match the
format specifier types.
Sat Mar 17 18:02:28 2001 Steve Huston <shuston@riverace.com>
* ace/config-aix-4.x.h: Fixed settings for exceptions and
placement delete to be ok for Visual Age C++ 5.
* include/makeinclude/platform_aix_vacpp.GNU: Basically new,
works with the Visual Age C++ 5 batch mode build on AIX.
* include/makeinclude/rules.lib.GNU: Added aix_build piece to
the section for linking a shared library. It uses the linker
to generate a shr.o (shared) file, then inserts that into
the library that's being built. This new section is only
used with platform_aix_vacpp.GNU at this point.
Fri Mar 16 15:07:23 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_Context.h (set_mode):
Changed the default mode from SSLv3 to SSLv23, i.e. support
SSLv2 and SSLv3 by default. This fixes interoperability
with applications that use Sun's JSSE, which only supports
SSLv2. Thanks to Max Khon <fjoe@newst.net> for providing the
patch.
Thu Mar 15 17:47:28 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Log_Msg_Test.cpp: Changed a ERROR message as a DEBUG
message. If it is an error message the scripts that run the
build gets confused.
Thu Mar 15 17:42:54 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Logging_Strategy_Test.cpp: Changed the "-s" option in the
test to write the output in to the output generated in the "log"
directory. This is just a hack to make the scoreboard clean.
Thu Mar 15 15:55:37 2001 Steve Huston <shuston@riverace.com>
* ace/Message_Queue_T.h: Add #include "ace/Message_Queue.h" so
IBM Visual Age C++ sees ACE_Message_Queue_Base when instantiating
templates.
* ace/ace-dll.icc: Fixed after being munged in a previous commit.
Also, corrected libACE.a generation and cleanup, and incorporated
fixes from Steve Ige <steve.ige@reuters.com> and Jerry
Odenwelder <jerryo@atl.fundtech.com>.
* THANKS: Added Steve Ige to the Hall of Fame.
Thu Mar 15 11:26:35 2001 Ossama Othman <ossama@uci.edu>
* ace/SSL/SSL_SOCK_Acceptor.i (ACE_SSL_SOCK_Acceptor):
Make sure the handle is set for the ACE_SSL_SOCK_Acceptor, after
initializing the underlying ACE_SOCK_Acceptor. This ensures
that OpenSSL has the proper handle. Thanks to Greg McCain
<greg.mccain@veritas.com> for suggesting this fix.
* THANKS:
Added Greg to the hall of the fame.
Thu Mar 15 05:46:59 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/FILE_Addr.cpp (ACE_FILE_Addr): Make sure to divide the size of
the filename_ by the sizeof (ACE_TCHAR) to handle unicode
correctly. Thanks to the ever vigilant Ivan Murphy for catching
this!
Wed Mar 14 01:47:10 2001 Nanbor Wang <nanbor@cs.wustl.edu>
* apps/Gateway/Gateway/Makefile:
* apps/Gateway/Peer/Makefile:
* apps/JAWS/server/Makefile:
* apps/gperf/tests/Makefile:
* examples/ASX/CCM_App/Makefile:
* examples/Service_Configurator/IPC-tests/server/Makefile:
* examples/Service_Configurator/Misc/Makefile:
* examples/Timer_Queue/Makefile:
* netsvcs/clients/Naming/Client/Makefile:
* netsvcs/clients/Naming/Dump_Restore/Makefile: Removed
unnecessary 'LIBS += $(ACELIB)'. They were causing link problem
for the latest KCC. compiner.
Tue Mar 13 20:56:10 2001 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/WFMO_Reactor.cpp (remove_to_be_added_handler_i):
* ace/WFMO_Reactor.cpp (remove_suspended_handler_i):
* ace/WFMO_Reactor.cpp (remove_handler_i):
If a user tried to (a) remove a "to be suspended handle" from
either the current info set or the to be added set, the handle
was correctly removed but the "to be suspended handle" count was
not reduced; (b) remove a "to be resumed handle" from the
suspended set, the handle was correctly removed but the "to be
resumed handle" count was not reduced. Since the "to be resumed
handle" and the "to be suspended handle" were not adjusted
properly, the reactor kept waking up thinking that changes were
required. Thanks to Lu Yunhai <luyunhai@huawei.com> for
reporting this problem.
* examples/Reactor/WFMO_Reactor/test_suspended_removals.cpp: Added
an extensive example for regression testing the above use cases.
Tue Mar 13 15:23:04 2001 Nanbor Wang <nanbor@cs.wustl.edu>
* ace/Service_Manager.cpp (list_services): Fixed Unicode bugs.
Tue Mar 13 15:13:48 2001 Nanbor Wang <nanbor@cs.wustl.edu>
* tests/Logging_Strategy_Test.cpp: Fixed Unicode related bugs.
Tue Mar 13 10:04:06 2001 Carlos O'Ryan <coryan@uci.edu>
* performance-tests/TCP/run_test.pl:
Fixed the path to the $ACE_ROOT/bin directory, now the script
runs again.
Tue Mar 13 06:04:03 2001 Douglas C. Schmidt <schmidt@ace.cs.wustl.edu>
* ace/Service_Manager.cpp (list_services): Add an indication of whether
a service is active or paused. Thanks to Mike Curtis for this
improvement.
* ace/Reactor.h: Clarified that the remove_handler (handle, mask)
method also removes the event handle. Thanks to Pierre Fayolle
<fayolle@enseirb.fr> for reporting this.
* tests/Logging_Strategy_Test.cpp (get_statistic): Replace struct stat
with ACE_stat. Thanks to Johnny Willemsen for reporting this.
Tue Mar 13 00:35:35 2001 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/Select_Reactor_T.i (deactivated): Reverted this change
regarding Select_Reactor_T::deactivated():
Thu Feb 22 12:28:15 2001 Irfan Pyarali <irfan@cs.wustl.edu>
Though my change improved correctness of access and change to
the <deactivated_> variable, it had a negative consequence: the
event loop calls Select_Reactor_T::deactivated() before calling
Select_Reactor_T::handle_events() to make sure that the reactor
is not closed yet. Unfortunately, if
Select_Reactor_T::deactivated() has a guard, it will send a null
event waking up the current leader and thus lead to unnecessary
thrashing. For now, I have removed the guard from the
Select_Reactor_T::deactivated() methods. We should revisit this
issue some time again. This fixes bug 816.
Mon Mar 12 16:30:32 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Logging_Strategy_Test.cpp (main): Fixed the rest of the
warnings in VxWorks builds.
Mon Mar 12 16:21:42 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Logging_Strategy_Test.cpp (main): Fixed a couple of
warnings in VxWorks build. Couple of more warnings are left.
Mon Mar 12 14:16:03 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* ace/Local_Name_Space_T.cpp (create_manager_i): Fixed a compile
error on Win32 Unicode platforms.
Mon Mar 12 12:12:36 2001 Nanbor Wang <nanbor@cs.wustl.edu>
* ACE-INSTALL.html: Also mentioned Windows 2000 explicitly in the
document. Thanks to Rahul Shukla <rshukla@ggn.aithent.com> for
raising the question.
Mon Mar 12 00:49:24 2001 Nanbor Wang <nanbor@cs.wustl.edu>
* tests/tests.dsw:
* tests/Logging_Strategy_Test.dsp: Added a new dsp file.
Sun Mar 11 21:00:16 2001 Carlos O'Ryan <coryan@uci.edu>
* bin/auto_compile:
Print out the config.h and platform_macros.GNU files, this is
useful when debugging builds.
Sun Mar 11 18:41:08 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/CDR_Stream.h: Updated a comment to clarify that the buffer()
method just returns a pointer to the first block in the chain.
Thanks to Johnny Willemsen for pointing this out.
Sun Mar 11 17:46:45 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* ace/Local_Name_Space_T.cpp: Fixed a compiler error on Win32
Unicode platforms.
Sun Mar 11 17:28:40 2001 Irfan Pyarali <irfan@cs.wustl.edu>
* ace/QoS/QoS_Session_Impl.cpp (rsvp_callback): <errflags> was unused.
Sun Mar 11 08:31:05 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* tests/Makefile.bor (NAMES): Added Logging_Strategy_Test.
Sun Mar 11 07:32:18 2001 Balachandran Natarajan <bala@cs.wustl.edu>
* tests/Logging_Strategy_Test.cpp (order): Fixed a warning in g++
builds.
Sat Mar 10 23:15:10 2001 Carlos O'Ryan <coryan@uci.edu>
* bin/auto_run_tests.lst:
Fixed name of Crashed_Callback test
Sat Mar 10 19:28:30 PST 2001 Mayur Deshpande <mayur@ics.uci.edu>
* include/makeinclude/platform_qnx_rtp_gcc.GNU:
Fixes to enable debugging on QNX without ACE crashing.
Thanks to Andy Olson for the suggestions.
Sat Mar 10 19:05:38 2001 Darrell Brunsch <brunsch@uci.edu>
* ace/config-win32.h:
Include config-win32-common.h even on Windows CE.
* ace/config-win32-msvc-6.h:
If ACE_ENDTHREADEX is already defined, don't define it.
* ace/OS_Dirent.h:
Changed the use of ACE_WINCE to ACE_HAS_WINCE.
* ace/Service_Manager.cpp:
Fixed a couple of ACE_TCHAR/ACE_LIB_TEXT problems.
* ace/ace_wchar.h:
On Windows CE, #include wtypes.h.
* ace/ace_dll.vcp:
* ace/ace_os_dll.vcp:
Redid the output files and directories. Now intermediate
files go into Release/PLATFORM and Debug/PLATFORM (where
PLATFORM = MIPS/ARM/X86EM/SH3/SH4). The *.lib files go
into ../Lib/PLATFORM and the *.dll into ../bin/PLATFORM.
Also, the DLL's were renamed from ace_dll.dll and
ace_os_dll.dll to ace[d].dll and ace_os[d].dll.
* bin/pippen.pl:
Changed the environment variables from DEFAULT_COMPILER and
DEFAULT_CONFIGS to PIPPEN_COMPILER and PIPPEN_CONFIGS. Also
used \Q\E for the configs because some of the Windows CE
configs confused the script because they use parentheses.
Sat Mar 10 16:59:51 2001 Carlos O'Ryan <coryan@uci.edu>
* ACE-INSTALL.html:
Remove references to the now obsolete config-linux-lxpthreads.h
and platform_linux_lxpthread.GNU
Sat Mar 10 16:38:22 2001 Carlos O'Ryan <coryan@uci.edu>
* tests/run_test.lst:
Running the Recursive_Mutex_Test on single-threaded builds makes
very little sense.
Sat Mar 10 16:35:19 2001 Carlos O'Ryan <coryan@uci.edu>
* bin/auto_run_tests.lst:
Add new tests: Muxing, Crashed_Callback, Client_Leaks and
Server_Leaks to the nightly runs.
Sat Mar 10 17:55:53 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* include/makeinclude: Zapped the platform_linux_pthread.GNU,
platform_linux_lxpthread.GNU, and platform_linux_lxpthreads.GNU
files since they are confusing and shouldn't not be used in
favor of platform_linux.GNU.
* ace: Zapped the config-linux.pthread.h and config-linux-lxpthreads.h
file since they are confusing and shouldn't not be used in favor
of config-linux.h. Thanks to Craig Rodrigues for this
suggestion.
Sat Mar 10 12:39:16 2001 Craig Rodrigues <crodrigu@bbn.com>
* ace/Reactor.h:
* ace/WFMO_Reactor.h:
* ace/Select_Reactor_T.h:
* ace/Reactor_Impl.h:
Cleaned up comment for schedule_timer()
Sat Mar 10 07:05:16 2001 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* tests: Added Logging_Strategy_Test.cpp. Thanks to Orlando
Ribeiro <oribeiro@inescporto.pt> for contributing this.
* tests/Makefile (BIN): Added Logging_Strategy_Test.
* tests/run_test.lst: Added Log_Msg_Test and
the new Logging_Strategy_Test.
* tests/Log_Msg_Test.cpp: Added ACE_TEXT macros to all the ACE_DEBUG and
ACE_ERROR calls.
* ace/Service_Manager.{h,cpp}: Refactored the request processing
code so that it's in a single place. Also, added support to
enable
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -