PROBLEM: () (Patch ID: OSF425-574) ******** This patch provides the support needed by the Developers' Toolkit Update Kit. Installing this patch is required before a Developers' Toolkit Update kit can be installed on a V4.0E system. The patch adds enablers to commands for which newer versions are available in Developers' Toolkit Update releases. The Update versions will be installed as independent binary files. If a patched command finds its Update file to have been installed, it will execute the Update file in place of itself. However, if the "-nodtk" option or a kernel-compiling option is specified, the patched command will continue running, to provide the original functionality. PROBLEM: (QAR 73054) (Patch ID: OSF425-703) ******** This patch fixes a problem where prof -pixie -asm would seg fault and dump core when the executable being profiled contains extremely long symbol names. PROBLEM: (QAR 69990) (Patch ID: OSF425-696) ******** This patch fixes the name demangling for the tools that print symbol table names generated by the C++ v6.2 compiler. This problem will only occur for most C++ objects compiled with the ansi options. A program compiled with the new C++ compiler with the new ansi name demangling would generate a new demangled function, template, class, etc. Then using one of the dumping tools that lacks the ability to decode (demangle) this string, the output would be unreadable. #include template class C { public: void foo(); }; template class D { public: void foo(); }; main() { C<'b'> c; c.foo(); D<98> d; d.foo(); } with old stdump: Externals table: 0. (file 0) ( 0) main Proc Text symref (indexNil) 1. (file 0) ( 0) foo__19C__tm__10_XCcL_2_98Xv_v Proc Undefined indexNil 2. (file 0) ( 0) foo__19D__tm__10_XCiL_2_98Xv_v Proc Undefined indexNil 3. (file 0) ( 0) _fpdata Global Undefined indexNil with new stdump: Externals table: 0. (file 0) ( 0) main Proc Text symref (indexNil) 1. (file 0) ( 0) void C<'b'>::foo(void) Proc Undefined indexNil 2. (file 0) ( 0) void D<98>::foo(void) Proc Undefined indexNil 3. (file 0) ( 0) _fpdata Global Undefined indexNil