* ACE version 5.2.2, released Sun Feb 17 16:32:01 2002. * Pentium 3 Running Win2K * Environment: Visual Studio 6 Enterprise Edition * CONTENTS OF...
Oren Sadeh
oren@...
Jun 2, 2002 6:35 am
2685
Hi Oren, ... This isn't a bug, it's a feature, as discussed on page 255 of C++NPv1 <www.cs.wustl.edu/~schmidt/ACE/book1/>. Additional coverage appears in...
Douglas C. Schmidt
schmidt@...
Jun 2, 2002 1:54 pm
2686
ACE VERSION: 5.2 HOST MACHINE and OPERATING SYSTEM: x86 family chip, Windows 2000 SP2 COMPILER NAME AND VERSION (AND PATCHLEVEL): Microsoft Visual C++ 6.00 SP ...
Aravind Sundaresan
aravind@...
Jun 4, 2002 1:38 pm
2687
I've added a sample fix below. Grant ... The following code change fixes this crash (in CDR_Stream.i) ACE_INLINE int ACE_OutputCDR::adjust (size_t size, size_t...
Grant M. Lauderdale
gml@...
Jun 4, 2002 3:39 pm
2688
Hi Grant, ... Great, thanks. I believe that Bala may already have fixed this problem in TAO 1.2.3. If you could try downloading it from ...
Douglas C. Schmidt
schmidt@...
Jun 4, 2002 3:42 pm
2689
Grant- ... I guess you are running into the problem described in http://deuce.doc.wustl.edu/bugzilla/show_bug.cgi?id=957 As Dr. Schmidt mentions, we made some...
Balachandran Natarajan
bala@...
Jun 4, 2002 5:09 pm
2690
Dear ACE team, we try to use the ACE library for the black board architecture of an experimental avionic system, and running into a problem where we are not...
Frank O. Flemisch
f.o.flemisch@...
Jun 4, 2002 10:37 pm
2691
Hi Frank, Thanks for using the PRF. ... This sounds like a sufficiently complicated use case that it's not likely to be something that we (i.e., the UCI and WU...
Douglas C. Schmidt
schmidt@...
Jun 4, 2002 10:43 pm
2692
ACE VERSION: 5.2.1 HOST MACHINE and OPERATING SYSTEM: WinNT 4.0 TARGET MACHINE and OPERATING SYSTEM, if different from HOST: WinNT 4.0 COMPILER NAME AND...
Yuri Pavlov
Yuri@...
Jun 5, 2002 1:25 pm
2693
ACE VERSION: 5.2.3 HOST MACHINE and OPERATING SYSTEM: Windows2000 Workstation on Intel Pentium III WinSock2 COMPILER NAME AND VERSION (AND PATCHLEVEL): ...
Alterman, Eugene
EugeneA@...
Jun 5, 2002 7:21 pm
2694
Hi Eugene, I don't recall why I didn't make open_section() do this, but I suspect there is a reason in there somewhere. Why don't you try making this change ...
Chris Hafey
chafey@...
Jun 5, 2002 8:00 pm
2695
Hi Eugene, Thanks for using the PRF. ... That sounds ok to me. However, we need to get feedback from Chris Hafey, Jerry Odenwelder, and Steve Huston, who...
Douglas C. Schmidt
schmidt@...
Jun 5, 2002 8:09 pm
2696
ACE VERSION: 5.2.3 HOST MACHINE and OPERATING SYSTEM: Windows 2000 Pro, Winsock 2.0 TARGET MACHINE and OPERATING SYSTEM, if different from HOST: COMPILER NAME...
Wei Lu
wei_lu_cn@...
Jun 6, 2002 1:39 am
2697
Hi, Thanks for using the PRF. ... We (i.e., the UCI and WU DOC groups) don't have the resources to keep all of the myriad MSVC++ project files uptodate with...
Douglas C. Schmidt
schmidt@...
Jun 6, 2002 2:37 am
2698
ACE VERSION: ACE version 5.2.1, released Sat Dec 01 09:26:27 2001. HOST MACHINE and OPERATING SYSTEM: RedHat Linux 7.2 TARGET MACHINE and OPERATING SYSTEM, if...
Michael Searles
msearles@...
Jun 10, 2002 6:11 pm
2699
Hi Michael, Thanks for using the PRF. ... Fixed, thanks! Doug -- Dr. Douglas C. Schmidt, Associate Professor TEL: (949) 824-1901 Dept of Electrical & Computer...
Douglas C. Schmidt
schmidt@...
Jun 10, 2002 7:25 pm
2700
Hi Michael and Doug ... This problem was already fixed after 5.2.1 Problem is inside ACE_OS::ctime_r(const time_t *t, ACE_TCHAR *buf, int buflen) on some...
Alain
1kmobijz1g001@...
Jun 11, 2002 5:32 pm
2701
Hi Alain and Doug - ... Either way, if you have a bug in your code from misusing strsncpy(), you'll need to find it and fix it. Truncating the dst/src (vs. not...
Michael Searles
msearles@...
Jun 12, 2002 6:01 am
2702
Hi Michael Hi ... Right returning '\0', is not the optimal solution. (Found it good enough and was a side effect of the "normal" code.) ... I know, later I did...
Alain
1kmobijz1g001@...
Jun 12, 2002 7:41 am
2703
To: ace-bugs@... Subject: BUILD: Failure to make services when building ACE/TAO on Solaris 5.8 with sunc++ ACE VERSION: 5.2 HOST MACHINE and OPERATING...
Robinson, Richard V
richard.v.robinson@...
Jun 12, 2002 8:30 pm
2704
ACE VERSION: cvs version (post-5.2.3) HOST MACHINE and OPERATING SYSTEM: i686 Windows 2000 sp2 COMPILER NAME AND VERSION (AND PATCHLEVEL): Borland C++Builder 6...
Christopher Kohlhoff
chris@...
Jun 13, 2002 2:06 pm
2705
ACE VERSION: 5.2, Released Fri Oct 5 05:56:50 2001 HOST MACHINE and OPERATING SYSTEM: ´ SunOS 5.8 Generic_111433-02 sun4u sparc SUNW,Ultra-5_10 TARGET...
Carsten Tønsberg N...
ctn@...
Jun 14, 2002 10:30 am
2706
Hi, Thanks for using the PRF. ... Here are my suggestions for solving this: . Try upgrading to TAO 1.2.3 <deuce.doc.wustl.edu/Download.html> since that was...
Douglas C. Schmidt
schmidt@...
Jun 14, 2002 11:20 am
2707
Hi Alain & Doug - ... Right. But, since strsncpy is called _after_ the native ctime_r function, if the buffer was too small (i.e., < 26) the damage is already...
Michael Searles
msearles@...
Jun 14, 2002 4:11 pm
2708
Hi Michael, ... That is indeed broken. It should be a static buffer. In any case, that code is only used for the ACE_HAS_WINCE configuration. Fixed. Thanks!...
Ossama Othman
ossama@...
Jun 14, 2002 4:39 pm
2709
Hi Michael That seems to be the good fix (aka using local storage). I suggest that you send the complete corrected ACE_OS::ctime_r (), based on the latest...
Alain
1kmobijz1g001@...
Jun 14, 2002 5:21 pm
2710
Hi Alain and Doug - Doug, it seems that an appropriate fix has been determined for ctime_r(), and I think Alain is planning on making the 'safe' strsncpy...
Michael Searles
msearles@...
Jun 14, 2002 8:20 pm
2711
Hi, How frequently are dependencies updated? I was getting link errors because of a signature change to POSIX_Proactor that I caught at compilation (of...
Marvin Wolfthal
maw@...
Jun 17, 2002 5:47 pm
2712
Hi Marvin, ... They should certainly be updated before a beta is released, if not before then. ... Please make sure you fill out the appropriate problem report...
Douglas C. Schmidt
schmidt@...
Jun 17, 2002 6:26 pm
2713
ACE VERSION: 5.1 HOST MACHINE and OPERATING SYSTEM: Winnt 4.0 TARGET MACHINE and OPERATING SYSTEM, if different from HOST: COMPILER NAME AND VERSION (AND...