- 论坛徽章:
- 0
|
在solaris sparc平台上,定义multimap<CDrKey,string>,当执行clear()的时候,在stl_tree.h的_S_right处出错,导致程序core掉,属于字节对齐问题,地址最后一位为1(每次core的时候地址最后一位都是奇数),运行时,并不是每次都会core,可能几天出现一次,几百万次会出现一次bus error的错误,有没好的办法解决?
static _Link_type
_S_right(_Base_ptr __x)
{ return static_cast<_Link_type>(__x->_M_right); }
Program terminated with signal 10, Bus error.
[New process 151312 ]
[New process 85776 ]
#0 0x00042734 in std::_Rb_tree<CDrKey, std::pair<CDrKey const, std::string>, std::_Select1st<std::pair<CDrKey const, std::string> >, std::less<CDrKey>, std::allocator<std::pair<CDrKey const, std::string> > >::_S_right (__x=0x39323031)
at /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_tree.h:501
501 /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_tree.h: No such file or directory.
in /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_tree.h
(gdb) bt
#0 0x00042734 in std::_Rb_tree<CDrKey, std::pair<CDrKey const, std::string>, std::_Select1st<std::pair<CDrKey const, std::string> >, std::less<CDrKey>, std::allocator<std::pair<CDrKey const, std::string> > >::_S_right (__x=0x39323031)
at /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_tree.h:501
#1 0x00043c98 in std::_Rb_tree<CDrKey, std::pair<CDrKey const, std::string>, std::_Select1st<std::pair<CDrKey const, std::string> >, std::less<CDrKey>, std::allocator<std::pair<CDrKey const, std::string> > >::_M_erase (this=0xfcb7fc00, __x=0x39323031)
at /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_tree.h:1264
#2 0x00043e28 in std::_Rb_tree<CDrKey, std::pair<CDrKey const, std::string>, std::_Select1st<std::pair<CDrKey const, std::string> >, std::less<CDrKey>, std::allocator<std::pair<CDrKey const, std::string> > >::clear (this=0xfcb7fc00)
at /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_tree.h:692
#3 0x00043eb0 in std::multimap<CDrKey, std::string, std::less<CDrKey>, std::allocator<std::pair<CDrKey const, std::string> > >::clear (this=0xfcb7fc00)
at /usr/local/gcc-4.1.1/lib/gcc/sparc-sun-solaris2.10/4.1.1/../../../../include/c++/4.1.1/bits/stl_multimap.h:461
#4 0x000254d0 in CFileContent::clear (this=0xfcb7fc00) |
|