GNU compiled app crashes with signal 11: Segmentation Fault

Hi Community,
I know this is not a GNU oriented forum, but maybe this is a common issue.
We have a C++ multi-threaded application running properly in Solaris 9 Sparc. Due to some issues mostly related to the NICs we needed to have the application running in Solaris 10 x86. The problem is that the compilation is ok (always with GNU) but during run time, we have the application crashing in different instructions because of a signal 11.
It always crashes in a malloc call within the libstdc++.so.6
It was compiled with the option -mt and -lthread. Is this a known problem? Do you recommend any direction to start seeking for a solution?
Pls, find attached the gdb outcomes after the crash.
Thanks in advance, Pablo
quiterio{root}# gdb cord /usr/nguser/core
GNU gdb 6.6
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type "show copying" to see the conditions.
There is absolutely no warranty for GDB.  Type "show warranty" for details.
This GDB was configured as "i386-pc-solaris2.10"...
Reading symbols from /lib/libsocket.so.1...done.
Loaded symbols for /lib/libsocket.so.1
Reading symbols from /export/home/mysql/mysql-5.0.51/lib/mysql/libmysqlclient.so.15...done.
Loaded symbols for /opt/mysql/mysql/lib/mysql/libmysqlclient.so.15
Reading symbols from /lib/libnsl.so.1...done.
Loaded symbols for /lib/libnsl.so.1
Reading symbols from /lib/librt.so.1...done.
Loaded symbols for /lib/librt.so.1
Reading symbols from /lib/libthread.so.1...
warning: Lowest section in /lib/libthread.so.1 is .dynamic at 00000074
done.
Loaded symbols for /lib/libthread.so.1
Reading symbols from /usr/local/lib/libmysqlpp.so.2...done.
Loaded symbols for /usr/local/lib/libmysqlpp.so.2
Reading symbols from /usr/lib/libz.so.1...done.
Loaded symbols for /usr/lib/libz.so.1
Reading symbols from /usr/local/lib/libstdc++.so.6...done.
Loaded symbols for /usr/local/lib/libstdc++.so.6
Reading symbols from /lib/libm.so.2...done.
Loaded symbols for /lib/libm.so.2
Reading symbols from /usr/local/lib/libgcc_s.so.1...done.
Loaded symbols for /usr/local/lib/libgcc_s.so.1
Reading symbols from /lib/libc.so.1...done.
Loaded symbols for /lib/libc.so.1
Reading symbols from /lib/libresolv.so.2...done.
Loaded symbols for /lib/libresolv.so.2
Reading symbols from /lib/libaio.so.1...done.
Loaded symbols for /lib/libaio.so.1
Reading symbols from /lib/libmd.so.1...done.
Loaded symbols for /lib/libmd.so.1
Reading symbols from /export/home/mysql/mysql-5.0.51/lib/mysql/libmysqlclient_r.so.15...done.
Loaded symbols for /opt/mysql/mysql/lib/mysql/libmysqlclient_r.so.15
Reading symbols from /lib/libpthread.so.1...
warning: Lowest section in /lib/libpthread.so.1 is .dynamic at 00000074
done.
Loaded symbols for /lib/libpthread.so.1
Reading symbols from /lib/ld.so.1...done.
Loaded symbols for /lib/ld.so.1
Core was generated by `/export/home/egasco/cord/cord'.
Program terminated with signal 11, Segmentation fault.
#0  0xfebd4ad2 in t_splay () from /lib/libc.so.1
(gdb) bt
#0  0xfebd4ad2 in t_splay () from /lib/libc.so.1
#1  0xfebd49b0 in t_delete () from /lib/libc.so.1
#2  0xfebd46ea in realfree () from /lib/libc.so.1
#3  0xfebd42ee in _malloc_unlocked () from /lib/libc.so.1
#4  0xfebd4138 in malloc () from /lib/libc.so.1
#5  0x080bdf64 in PMData::addData (this=0x818ae70, header=
          {_M_t = {_M_impl = {<std::allocator<std::_Rb_tree_node<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >> = {<__gnu_cxx::new_allocator<std::_Rb_tree_node<std::pair<const std::basic_string<char, std::char_traits<char>, std::allocator<char> >, std::basic_string<char, std::char_traits<char>, std::allocator<char> > > > >> = {<No data fields>}, <No data fields>}, _M_key_compare = {<std::binary_function<std::basic_string<char, std::char_traits<char>, std::allocator<char> >,std::basic_string<char, std::char_traits<char>, std::allocator<char> >,bool>> = {<No data fields>}, <No data fields>}, _M_header = {_M_color = std::_S_red, _M_parent = 0x81ade48, _M_left = 0x81c2310, _M_right = 0x81ae900}, _M_node_count = 8}}},
    data=0x81c1a20 "v=0\r\no=50 2890844526 2890842807 IN IP4 192.168.1.245\r\ns=SDP seminar\r\nc=IN IP4 192.168.1.245\r\nt= 0 0\r\nm=audio 9092 RTP/AVP 8 18\r\n", dest=ONEP_SIP) at PMData.cpp:23
#6  0x080b3a52 in UserCall::process_initialization (this=0x81c2630, packet=0x81ad128) at UserCall.cpp:505
#7  0x080b056f in UserCall::process (this=0x81c2630, packet=0x81ad128) at UserCall.cpp:132
#8  0x080791d7 in ONEPPacketManager::processPacket () at ActionNotAllowException.h:15
#9  0x080aa159 in onep_processing_thread (arg=0x8127e88) at CordApplication.cpp:1317
#10 0xfec34672 in _thr_setup () from /lib/libc.so.1
#11 0xfec34960 in L3_doit () from /lib/libc.so.1
#12 0xfe7e2400 in ?? ()
#13 0x00000000 in ?? ()

A crash in malloc in multi-threaded code could be a bug in the system malloc or a failure to use a thread-safe malloc. The default Solaris malloc in /usr/lib/libc.so.* is thread-safe.
A crash in malloc can also be caused by a heap corruption. Probably the most common causes of heap corruption are
- writing beyond the bounds of a buffer or variable (off by one, for example)
- deleting the same object more than once
- using an invalid pointer:
--- uninitialized
--- pointing to a deleted object
--- pointing to an out-of-scope object
- failure to guard a critical region
- failing to declare shared objects as volatile

Similar Messages

  • Spotify crashes with ALSA. Segmentation Fault

    Spotify crashes on song-change with ALSA. "Segmentation Fault".
    Spotify works like a charm when I use pulseaudio. But i dont want to use pulseaudio, i want it to work with ALSA.
    So I have completly removed pulseaudio.
    Ive tried editing /usr/bin/spotify, xaos3k suggestion on the AUR page.
    Tried symlinking libcrypto and libssl.
    But still cant get it to work.
    [thomas@localhost ~]$ spotify
    /usr/share/spotify/spotify: /usr/lib/libcrypto.so.0.9.8: no version information available (required by /usr/share/spotify/spotify)
    /usr/share/spotify/spotify: /usr/lib/libssl.so.0.9.8: no version information available (required by /usr/share/spotify/spotify)
    Fontconfig warning: "/etc/fonts/conf.d/50-user.conf", line 9: reading configurations from ~/.fonts.conf is deprecated.
    23:22:44.680 I [breakpad.cpp:62 ] Registered Breakpad for product: spotify
    23:22:44.681 I [translate.cpp:123 ] Reloading language file
    23:22:44.683 I [breakpad.cpp:192 ] Searching for crashdumps: /home/thomas/.cache/spotify/*.dmp
    23:22:44.809 A [CefModule.cpp:327 ] Check failed: g_cef_handle:
    23:22:44.836 I [offline_authorizer.cpp:306 ] Unable to login offline: no such user
    23:22:44.972 I [ap:1755 ] Connecting to AP E5.spotify.com:4070
    23:22:45.071 I [ap:1229 ] Connected to AP: 78.31.8.98:4070
    23:22:45.389 I [mainview:984 ] Registering bundled app html with version 0.1.0
    23:22:45.389 I [mainview:987 ] Registering bundled framework import with version 0.1.0
    23:22:45.389 I [mainview:987 ] Registering bundled framework bridge-desktop with version 0.4.0
    23:22:45.389 I [mainview:987 ] Registering bundled framework api with version 0.1.0
    23:22:45.389 I [mainview:987 ] Registering bundled framework resources with version 0.2.0
    23:22:45.389 I [mainview:987 ] Registering bundled framework unstable with version 0.2.1
    23:22:45.389 I [mainview:987 ] Registering bundled framework util with version 0.1.0
    23:22:45.389 I [mainview:984 ] Registering bundled app album-header with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app bundles with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app error with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app feed with version 1.0.3
    23:22:45.389 I [mainview:984 ] Registering bundled app finder with version 1.1.0
    23:22:45.389 I [mainview:984 ] Registering bundled app home with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app install with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app people with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app profile with version 1.0.3
    23:22:45.389 I [mainview:984 ] Registering bundled app profile-header with version 1.0.3
    23:22:45.389 I [mainview:984 ] Registering bundled app radio with version 1.0.1
    23:22:45.389 I [mainview:984 ] Registering bundled app search-dropdown with version 1.0.1
    23:22:45.389 I [mainview:984 ] Registering bundled app search-header with version 1.0.0
    23:22:45.389 I [mainview:984 ] Registering bundled app share with version 1.0.2
    23:22:45.389 I [mainview:984 ] Registering bundled app subscribe-popup with version 1.1.0
    23:22:45.389 I [mainview:984 ] Registering bundled app og-popup with version 1.0.1
    23:22:45.389 I [mainview:984 ] Registering bundled app notification-popup with version 0.0.24
    23:22:45.391 I [upnp:508 ] 192.168.15.1: got external ip 0xA00000C
    23:22:45.413 I [AppManager.cpp:147 ] Created instance of the application feed.
    23:22:45.414 I [AppManager.cpp:147 ] Created instance of the application search-dropdown.
    23:22:45.415 I [AppManager.cpp:147 ] Created instance of the application notification-popup.
    23:22:45.416 I [AppManager.cpp:147 ] Created instance of the application home.
    23:22:45.418 I [AppManager.cpp:189 ] Keeping application What's New alive for 60000 ms.
    23:22:45.605 I [mainview:6830 ] Load complete (0) url: sp://feed/index.html
    23:22:45.847 I [mainview:6830 ] Load complete (0) url: sp://home/index.html
    23:22:46.317 I [ad:1066 ] Found ad (time = 1352762588, adclass = 'mpu', time left = 0, length = 86400)
    23:22:47.490 I [upnp:456 ] 192.168.15.1: mapping add ok
    23:22:47.510 I [upnp:482 ] 192.168.15.1: Port 50099 mapped OK
    23:22:48.233 I [AppManager.cpp:189 ] Keeping application What's New alive for 60000 ms.
    23:22:48.427 I [mainview:6830 ] Load complete (0) url: http://track.adform.net/invisible.gif
    23:22:48.624 I [ad:1066 ] Found ad (time = 1352762590, adclass = 'tower', time left = 30, length = 15)
    (spotify:21036): Gtk-CRITICAL **: IA__gtk_window_resize: assertion `width > 0' failed
    23:22:49.042 I [mainview:6830 ] Load complete (0) url: http://rad.msn.com/
    23:22:51.736 I [audio_driver_linux.cpp:35 ] Using Alsa
    /usr/bin/spotify: line 8: 21036 Minnesegmentsfeil LD_LIBRARY_PATH="/usr/bin/;/usr/share/spotify/libs/" /usr/share/spotify/spotify "$@"
    [thomas@localhost ~]$
    Any suggestions?

    Anyone else having trouble using alsa with spotify?

  • "KERN_INVALID_ADDRESS at 0x000000ac" I am facing this issue after updateing my device to ios 5 and my app crashes with this error

    "KERN_INVALID_ADDRESS at 0x000000ac" I am facing this issue after updateing my device to ios 5 and my app crashes with this error

    "KERN_INVALID_ADDRESS at 0x000000ac" I am facing this issue after updateing my device to ios 5 and my app crashes with this error

  • Fix for Music app crash with iTunes Match "on"

    Sometimes if you try to use iTunes match for the first time on 3G(or any other cellular connection) it crashes Music app permanently. It can occur if you try to run Music app on the go with bad 3G connectivity so some data is corrupted or configured incorrectly. I had this twice, but found this "easy" fix without a need of PC/Mac computer & iTunes.
    How to fix music app crash with itunes match "on".
    Step by step on the iPad:
    - delete all music on your device:
    Go to settings->usage->view list of all apps->swipe music icon ->choose delete
    - set itunes match off
    - run music app
    - give it a while till it shows "no music" info and only shop button. It needs to reload all settings and clear all data. Wait till no loading circle.
    - go to settings app again
    - music settings - itunes match on but "show all your music" off !
    -  open music app
    - wait till all your music lists covers download. It will take a while. Scroll down to load them all if you want. Wait till no loading circle.
    - go to settings app again
    - music settings - show all your music on
    - go to music app
    - wait till it download list of all your music
    Done
    Maybe you can fix this with lesser number of steps but this way I'm sure it works.

    Sometimes if you try to use iTunes match for the first time on 3G(or any other cellular connection) it crashes Music app permanently. It can occur if you try to run Music app on the go with bad 3G connectivity so some data is corrupted or configured incorrectly. I had this twice, but found this "easy" fix without a need of PC/Mac computer & iTunes.
    How to fix music app crash with itunes match "on".
    Step by step on the iPad:
    - delete all music on your device:
    Go to settings->usage->view list of all apps->swipe music icon ->choose delete
    - set itunes match off
    - run music app
    - give it a while till it shows "no music" info and only shop button. It needs to reload all settings and clear all data. Wait till no loading circle.
    - go to settings app again
    - music settings - itunes match on but "show all your music" off !
    -  open music app
    - wait till all your music lists covers download. It will take a while. Scroll down to load them all if you want. Wait till no loading circle.
    - go to settings app again
    - music settings - show all your music on
    - go to music app
    - wait till it download list of all your music
    Done
    Maybe you can fix this with lesser number of steps but this way I'm sure it works.

  • Kontact PID: 9999 Signal: 11 Segmentation Fault

    I recently upgraded my system to KDE 4.4 and now I am experience a problem with Kontact. I have two IMAP accounts, and when I try selecting the inbox from the account that is not currently highlighted, Kontact crashes with a PID: 9999 Signal: 11 Segmentation Fault.
    Here's the backtrace:
    #5 0x00007f9fcba205c0 in QTreeWidgetItem::addChild(QTreeWidgetItem*) () from /usr/lib/libQtGui.so.4
    #6 0x00007f9fcba209c3 in QTreeWidgetItem::QTreeWidgetItem(QTreeWidgetItem*, int) () from /usr/lib/libQtGui.so.4
    #7 0x00007f9fb54dec69 in KMMimePartTreeItem::KMMimePartTreeItem(KMMimePartTreeItem*, partNode*, QString const&, QString const&, QString const&, unsigned long long, bool) ()
    from /usr/lib/libkmailprivate.so.4
    #8 0x00007f9fb5523853 in partNode::fillMimePartTree(KMMimePartTreeItem*, KMMimePartTree*, QString const&, QString const&, QString const&, unsigned long long, bool) ()
    from /usr/lib/libkmailprivate.so.4
    #9 0x00007f9fb55120dc in KMail::ObjectTreeParser::insertAndParseNewChildNode(partNode&, char const*, char const*, bool, bool) () from /usr/lib/libkmailprivate.so.4
    #10 0x00007f9fb5515f00 in KMail::ObjectTreeParser::processMessageRfc822Subtype(partNode*, KMail::ProcessResult&) () from /usr/lib/libkmailprivate.so.4
    #11 0x00007f9fb5511801 in KMail::ObjectTreeParser::parseObjectTree(partNode*) () from /usr/lib/libkmailprivate.so.4
    #12 0x00007f9fb5511b25 in KMail::ObjectTreeParser::stdChildHandling(partNode*) () from /usr/lib/libkmailprivate.so.4
    #13 0x00007f9fb5511ed4 in KMail::ObjectTreeParser::processMultiPartMixedSubtype(partNode*, KMail::ProcessResult&) () from /usr/lib/libkmailprivate.so.4
    #14 0x00007f9fb5511801 in KMail::ObjectTreeParser::parseObjectTree(partNode*) () from /usr/lib/libkmailprivate.so.4
    #15 0x00007f9fb5393510 in KMReaderWin::parseMsg(KMMessage*) () from /usr/lib/libkmailprivate.so.4
    #16 0x00007f9fb5388590 in KMReaderWin::displayMessage() () from /usr/lib/libkmailprivate.so.4
    #17 0x00007f9fb5388760 in KMReaderWin::updateReaderWin() () from /usr/lib/libkmailprivate.so.4
    #18 0x00007f9fb5389035 in KMReaderWin::update(KMail::Interface::Observable*) () from /usr/lib/libkmailprivate.so.4
    #19 0x00007f9fb55b13b1 in KMail::ISubject::notify() () from /usr/lib/libkmailprivate.so.4
    #20 0x00007f9fb52ae8ac in KMMessage::updateBodyPart(QString, QByteArray const&) () from /usr/lib/libkmailprivate.so.4
    #21 0x00007f9fb5588a69 in KMail::ImapJob::slotGetMessageResult(KJob*) () from /usr/lib/libkmailprivate.so.4
    #22 0x00007f9fb558a62b in KMail::ImapJob::qt_metacall(QMetaObject::Call, int, void**) () from /usr/lib/libkmailprivate.so.4
    #23 0x00007f9fcc0cf4df in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /usr/lib/libQtCore.so.4
    #24 0x00007f9fcc4c9542 in KJob::result(KJob*) () from /usr/lib/libkdecore.so.5
    #25 0x00007f9fcc4c97e0 in KJob::emitResult() () from /usr/lib/libkdecore.so.5
    #26 0x00007f9fc98b6333 in KIO::SimpleJob::slotFinished() () from /usr/lib/libkio.so.5
    #27 0x00007f9fc98b6cf7 in KIO::TransferJob::slotFinished() () from /usr/lib/libkio.so.5
    #28 0x00007f9fc98b4921 in KIO::TransferJob::qt_metacall(QMetaObject::Call, int, void**) () from /usr/lib/libkio.so.5
    #29 0x00007f9fcc0cf4df in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /usr/lib/libQtCore.so.4
    #30 0x00007f9fc9975fe1 in KIO::SlaveInterface::dispatch(int, QByteArray const&) () from /usr/lib/libkio.so.5
    #31 0x00007f9fc9973353 in KIO::SlaveInterface::dispatch() () from /usr/lib/libkio.so.5
    #32 0x00007f9fc99677c6 in KIO::Slave::gotInput() () from /usr/lib/libkio.so.5
    #33 0x00007f9fc99679ac in KIO::Slave::qt_metacall(QMetaObject::Call, int, void**) () from /usr/lib/libkio.so.5
    #34 0x00007f9fcc0cf4df in QMetaObject::activate(QObject*, QMetaObject const*, int, void**) () from /usr/lib/libQtCore.so.4
    #35 0x00007f9fc9885837 in KIO::ConnectionPrivate::dequeue() () from /usr/lib/libkio.so.5
    #36 0x00007f9fc988595d in KIO::Connection::qt_metacall(QMetaObject::Call, int, void**) () from /usr/lib/libkio.so.5
    #37 0x00007f9fcc0cc419 in QObject::event(QEvent*) () from /usr/lib/libQtCore.so.4
    #38 0x00007f9fcb4805ec in QApplicationPrivate::notify_helper(QObject*, QEvent*) () from /usr/lib/libQtGui.so.4
    #39 0x00007f9fcb486bdb in QApplication::notify(QObject*, QEvent*) () from /usr/lib/libQtGui.so.4
    #40 0x00007f9fcca89cd6 in KApplication::notify(QObject*, QEvent*) () from /usr/lib/libkdeui.so.5
    #41 0x00007f9fcc0bc79c in QCoreApplication::notifyInternal(QObject*, QEvent*) () from /usr/lib/libQtCore.so.4
    #42 0x00007f9fcc0bef17 in QCoreApplicationPrivate::sendPostedEvents(QObject*, int, QThreadData*) () from /usr/lib/libQtCore.so.4
    #43 0x00007f9fcc0e60d3 in ?? () from /usr/lib/libQtCore.so.4
    #44 0x00007f9fc38ed26e in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
    #45 0x00007f9fc38f0c28 in g_main_context_iterate () from /usr/lib/libglib-2.0.so.0
    #46 0x00007f9fc38f0d50 in g_main_context_iteration () from /usr/lib/libglib-2.0.so.0
    #47 0x00007f9fcc0e5c13 in QEventDispatcherGlib::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQtCore.so.4
    #48 0x00007f9fcb52ed6e in ?? () from /usr/lib/libQtGui.so.4
    #49 0x00007f9fcc0bb0c2 in QEventLoop::processEvents(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQtCore.so.4
    #50 0x00007f9fcc0bb49c in QEventLoop::exec(QFlags<QEventLoop::ProcessEventsFlag>) () from /usr/lib/libQtCore.so.4
    #51 0x00007f9fcc0bf1db in QCoreApplication::exec() () from /usr/lib/libQtCore.so.4
    #52 0x0000000000403b3e in _start ()
    I submitted a crash report, but just wondering if anybody else is experiencing this. Also, kdepim-runtime kdepimlibs are both installed and up to date.
    Thanks!

    Actually I would try removing everything under .kde4 and .config... It's a pain in the ass to configure everything again but... most of my problems were gone. Or maybe look for and remove kmail config files under those folders, since it seems to be a KMail related crash.
    Last edited by Slurp (2010-02-22 16:39:48)

  • Hard crashes AND app crashes (with Console logs)

    This topic is several months, if not a couple of years, in the making.
    I bought two white MBs in July of 07 from the refurbished section of the Apple Store. My wife's needed a trip to the Apple Care depot not long ago, and I'm starting to think mine might, too.
    Apps routinely crash on startup. They can usually be relaunched successfully the second time (though sometimes, three or four times is the charm). At the suggestion of a Mac Genius, I began keeping Console running and capturing error logs whenever this happened. I reproduce several of them below.
    In addition, I am starting to experience an increasing number of total failures - the multi-lingual screen of death - and while this has happened while working in a variety of apps, one constant is that I'm almost always streaming audio or video. In fact, launching a flash movie has often (though not always) been the immediate event prior to the black curtain falling.
    Before I proceed with a repair, I'd like to know if the always helpful Discussions regulars could give me some input. Does this look like a Logic Board or SIMM failure (I did add extra memory purchased from OWC) that could be diagnosed and fixed with the standard $275 Apple mail-in repair job? Thanks.
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] Audio Hijack(4104,0xa034f720) malloc: * error for object 0x450fa0: double free+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] Audio Hijack(4104,0xa034f720) malloc: * error for object 0x451930: double free+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] Audio Hijack(4104,0xa034f720) malloc: * error for object 0x4510a0: double free+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] Audio Hijack(4104,0xa034f720) malloc: * error for object 0x4518e0: double free+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:45 PM [0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:49 PM Finder[224] [QL ERROR] quicklookd crashed while thumbnailing file://localhost/Users/abarnhart/Documents/Digital%20audio%202009.2/KNX%20200910 01%202123.mp3+
    +Oct 1 Oct 1 @ 11:44:49 PM Spotlight[198] [QL ERROR] quicklookd crashed while thumbnailing file://localhost/Users/abarnhart/Documents/Keynote%20Lincoln%20for%20PPT.key+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.launchd[188] (com.apple.quicklook[4101]) Exited abnormally: Bus error+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] quicklookd(4106,0xa034f720) malloc: * error for object 0x13ac00: double free+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] quicklookd(4106,0xa034f720) malloc: * error for object 0x13b540: double free+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] quicklookd(4106,0xa034f720) malloc: * error for object 0x13ac60: double free+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] quicklookd(4106,0xa034f720) malloc: * error for object 0x13b550: double free+
    +Oct 1 Oct 1 @ 11:44:50 PM com.apple.quicklook[4106] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:53 PM com.apple.launchd[1] (com.apple.aslmanager[4109]) Exited abnormally: Segmentation fault+
    +Oct 1 Oct 1 @ 11:44:56 PM Finder[224] [QL ERROR] quicklookd crashed while thumbnailing file://localhost/Users/abarnhart/Documents/Digital%20audio%202009.2/Mark%20Farka s%2020090916%201000.mp3+
    +Oct 1 Oct 1 @ 11:44:56 PM Spotlight[198] [QL ERROR] quicklookd crashed while thumbnailing file://localhost/Users/abarnhart/Documents/Backup%20of%20Keynote%20Lincoln%20for %20PPT.key+
    +Oct 1 Oct 1 @ 11:44:56 PM com.apple.launchd[188] (com.apple.quicklook[4106]) Exited abnormally: Segmentation fault+
    +Oct 1 Oct 1 @ 11:44:56 PM com.apple.launchd[188] (com.apple.quicklook) Throttling respawn: Will start in 5 seconds+
    +Oct 1 Oct 1 @ 11:44:56 PM com.apple.launchd[188] (com.apple.quicklook) Throttling respawn: Will start in 5 seconds+
    +Oct 1 Oct 1 @ 11:44:56 PM com.apple.launchd[188] ([0x0-0x27f27f].com.rogueamoeba.AudioHijack2[4104]) Exited abnormally: Segmentation fault+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] UserNotificationCenter(4111,0xa034f720) malloc: * error for object 0x134fc0: double free+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] UserNotificationCenter(4111,0xa034f720) malloc: * error for object 0x135680: double free+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] UserNotificationCenter(4111,0xa034f720) malloc: * error for object 0x134fc0: double free+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] UserNotificationCenter(4111,0xa034f720) malloc: * error for object 0x136070: double free+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:44:57 PM com.apple.UserNotificationCenter[4111] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] quicklookd(4113,0xa034f720) malloc: * error for object 0x13c950: double free+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] quicklookd(4113,0xa034f720) malloc: * error for object 0x13d290: double free+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] quicklookd(4113,0xa034f720) malloc: * error for object 0x13c9b0: double free+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] quicklookd(4113,0xa034f720) malloc: * error for object 0x13d2a0: double free+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 1 Oct 1 @ 11:45:01 PM com.apple.quicklook[4113] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] DVD Player(2694,0xa034f720) malloc: * error for object 0x64a0c0: double free+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] DVD Player(2694,0xa034f720) malloc: * error for object 0x64ad40: double free+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] DVD Player(2694,0xa034f720) malloc: * error for object 0x64a0c0: double free+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] DVD Player(2694,0xa034f720) malloc: * error for object 0x64ad80: double free+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:17 AM [0x0-0x156156].com.apple.DVDPlayer[2694] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:19 AM com.apple.launchd[1] (com.apple.aslmanager[2697]) Exited abnormally: Segmentation fault+
    +Oct 7 Oct 7 @ 7:57:31 AM com.apple.launchd[218] ([0x0-0x156156].com.apple.DVDPlayer[2694]) Exited abnormally: Bus error+
    +Oct 7 Oct 7 @ 7:57:31 AM com.apple.launchd[218] ([0x0-0x156156].com.apple.DVDPlayer[2694]) Exited abnormally: Bus error+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] UserNotificationCenter(2702,0xa034f720) malloc: * error for object 0x136470: double free+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] UserNotificationCenter(2702,0xa034f720) malloc: * error for object 0x14fff0: double free+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] UserNotificationCenter(2702,0xa034f720) malloc: * error for object 0x135d20: double free+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] UserNotificationCenter(2702,0xa034f720) malloc: * error for object 0x150e40: double free+
    +Oct 7 Oct 7 @ 7:57:37 AM com.apple.UserNotificationCenter[2702] * set a breakpoint in mallocerrorbreak to debug+
    +and then later while I was fastforwarding+
    +Oct 7 Oct 7 @ 8:04:43 AM com.apple.launchd[1] (com.apple.aslmanager[2732]) Exited abnormally: Segmentation fault+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] Adobe InDesign CS3(276,0xa034f720) malloc: * error for object 0x251e4320: double free+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] Adobe InDesign CS3(276,0xa034f720) malloc: * error for object 0x251e4f80: double free+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] Adobe InDesign CS3(276,0xa034f720) malloc: * error for object 0x251e4320: double free+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] Adobe InDesign CS3(276,0xa034f720) malloc: * error for object 0x251e4b80: double free+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] Adobe InDesign CS3(276,0xa034f720) malloc: * error for object 0x251e4b80: double free+
    +Oct 19 Oct 19 @ 7:08:17 AM [0x0-0x27027].com.adobe.InDesign[276] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:24 AM ReportCrash[278] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.+
    +Oct 19 Oct 19 @ 7:08:24 AM ReportCrash[278] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.+
    +Oct 19 Oct 19 @ 7:08:24 AM ReportCrash[278] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.+
    +Oct 19 Oct 19 @ 7:08:24 AM ReportCrash[278] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.+
    +Oct 19 Oct 19 @ 7:08:24 AM ReportCrash[278] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.+
    +Oct 19 Oct 19 @ 7:08:24 AM ReportCrash[278] CFPropertyListCreateFromXMLData(): Old-style plist parser: missing semicolon in dictionary.+
    +Oct 19 Oct 19 @ 7:08:22 AM com.apple.launchd[131] ([0x0-0x27027].com.adobe.InDesign[276]) Exited abnormally: Segmentation fault+
    +Oct 19 Oct 19 @ 7:08:22 AM com.apple.launchd[131] ([0x0-0x27027].com.adobe.InDesign[276]) Exited abnormally: Segmentation fault+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] UserNotificationCenter(280,0xa034f720) malloc: * error for object 0x1333c0: double free+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] UserNotificationCenter(280,0xa034f720) malloc: * error for object 0x14d290: double free+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] UserNotificationCenter(280,0xa034f720) malloc: * error for object 0x132c70: double free+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] UserNotificationCenter(280,0xa034f720) malloc: * error for object 0x14d260: double free+
    +Oct 19 Oct 19 @ 7:08:25 AM com.apple.UserNotificationCenter[280] * set a breakpoint in mallocerrorbreak to debug+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] appToBeUpgraded && upgraderApp are defined+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] appToBeUpgraded && upgraderApp do both exist+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] appToBeUpgraded: /Applications/Skype.app+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] upgraderApp: /Applications/.Skype_Upgrade.app+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Current running version is 2.8.0.722+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Update version is 2.8.0.722+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Update error: updater version 2.8.0.722 is equal to current version 2.8.0.722+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Application is being upgraded+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Application update: new application was moved to /Applications/Skype_new.app+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Application update: old application was renamed to /Applications/Skype_old.app+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Application update: new application was renamed to /Applications/Skype.app+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Application update: newly launched app is going to fork+
    +Oct 2 Oct 2 @ 11:25:32 AM Skype[5892] Application update: newly launched app is going to fork+
    +Oct 2 Oct 2 @ 11:25:33 AM com.apple.launchd[188] ([0x0-0x359359].com.skype.skype[5892]) Stray process with PGID equal to this dead job: PID 5898 PPID 1 Skype+
    +Oct 2 Oct 2 @ 11:25:34 AM [0x0-0x359359].com.skype.skype Main starting with pid 5898 parent pid 1+
    +Oct 2 Oct 2 @ 11:25:34 AM [0x0-0x359359].com.skype.skype Main starting with pid 5898 parent pid 1+
    +Oct 2 Oct 2 @ 11:25:37 AM Skype[5898] Application update: old app removed: /Applications/Skype_old.app+
    +Oct 2 Oct 2 @ 11:25:37 AM Skype[5898] SkypeApplication::init called+
    +Oct 2 Oct 2 @ 11:25:37 AM [0x0-0x359359].com.skype.skype 2009-10-02 11:25:37.780 Skype[5898:807] Application update: old app removed: /Applications/Skype_old.app+
    +Oct 2 Oct 2 @ 11:25:37 AM [0x0-0x359359].com.skype.skype 2009-10-02 11:25:37.790 Skype[5898:807] SkypeApplication::init called+
    +Oct 2 Oct 2 @ 11:25:38 AM Skype[5898] ChatCpntroller::loadWebViewHistory: could not load chat web view history, error (null)+
    +Oct 2 Oct 2 @ 11:25:38 AM Skype[5898] This seems to be the first run of version 2.8.0.722 of Skype on this machine+
    +Oct 2 Oct 2 @ 11:25:38 AM Skype[5898] This seems to be the first run of version 2.8.0.722 of Skype on this machine+
    +Oct 2 Oct 2 @ 11:25:38 AM [0x0-0x359359].com.skype.skype 2009-10-02 11:25:38.447 Skype[5898:807] ChatCpntroller::loadWebViewHistory: could not load chat web view history, error (null)+
    +Oct 2 Oct 2 @ 11:25:38 AM [0x0-0x359359].com.skype.skype 2009-10-02 11:25:38.459 Skype[5898:807] This seems to be the first run of version 2.8.0.722 of Skype on this machine+
    +Oct 2 Oct 2 @ 11:25:38 AM [0x0-0x359359].com.skype.skype 2009-10-02 11:25:38.504 Skype[5898:807] This seems to be the first run of version 2.8.0.722 of Skype on this machine+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype Skype(5898,0xa034f720) malloc: * error for object 0x1188880: double free+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype * set a breakpoint in mallocerrorbreak to debug+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype Skype(5898,0xa034f720) malloc: * error for object 0x1189550: double free+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype * set a breakpoint in mallocerrorbreak to debug+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype * set a breakpoint in mallocerrorbreak to debug+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype Skype(5898,0xa034f720) malloc: * error for object 0x1188f00: double free+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype * set a breakpoint in mallocerrorbreak to debug+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype Skype(5898,0xa034f720) malloc: * error for object 0x1189170: double free+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype * set a breakpoint in mallocerrorbreak to debug+
    +Oct 2 Oct 2 @ 11:25:39 AM [0x0-0x359359].com.skype.skype * set a breakpoint in mallocerrorbreak to debug+

    Have you run the Apple Hardware Test yet ?
    Did the problems start after you installed the RAM upgrade?
    The multilingual screen is a 'Kernel Panic'....very often associated with failing or faulty RAM...
    http://www.thexlab.com/faqs/kernelpanics.html
    This other link speaks of insufficient disk space as well as not enough RAM causing apps. to quit..
    http://www.thexlab.com/faqs/lackofram.html

  • [SOLVED] Gnome 3.8 apps crash with X Window System Error

    So far this applications are affected:
    - gnome-terminal (when clicking on menu)
    - gnome-control-center (when choosing Users or Date & Time and some other tiles, choosing account in GOA)
    - epiphany (when clicking on new tab button)
    They crash with following error in console:
    (gnome-control-center:12717): Gdk-ERROR **: The program 'gnome-control-center' received an X Window System error.
    This probably reflects a bug in the program.
    The error was 'BadImplementation (server does not implement operation)'.
    (Details: serial 3583 error_code 17 request_code 148 minor_code 46)
    (Note to programmers: normally, X errors are reported asynchronously;
    that is, you will receive the error a while after causing it.
    To debug your program, run it with the GDK_SYNCHRONIZE environment
    variable to change this behavior. You can then get a meaningful
    backtrace from your debugger if you break on the gdk_x_error() function.)
    dmesg show only this line:
    [14505.289265] traps: gnome-control-c[12717] trap int3 ip:7fc494139ead sp:7fff3986e5e0 error:0
    Running with gdb:
    Program received signal SIGTRAP, Trace/breakpoint trap.
    0x00007ffff13caead in g_logv () from /usr/lib/libglib-2.0.so.0
    (gdb) backtrace
    #0 0x00007ffff13caead in g_logv () from /usr/lib/libglib-2.0.so.0
    #1 0x00007ffff13cb092 in g_log () from /usr/lib/libglib-2.0.so.0
    #2 0x00007ffff2825e60 in ?? () from /usr/lib/libgdk-3.so.0
    #3 0x00007ffff2830801 in ?? () from /usr/lib/libgdk-3.so.0
    #4 0x00007ffff5332976 in _XError () from /usr/lib/libX11.so.6
    #5 0x00007ffff532fbc1 in ?? () from /usr/lib/libX11.so.6
    #6 0x00007ffff532fc05 in ?? () from /usr/lib/libX11.so.6
    #7 0x00007ffff5330495 in _XEventsQueued () from /usr/lib/libX11.so.6
    #8 0x00007ffff5332f28 in _XData32 () from /usr/lib/libX11.so.6
    #9 0x00007ffff530d46e in XChangeProperty () from /usr/lib/libX11.so.6
    #10 0x00007ffff283bcfb in ?? () from /usr/lib/libgdk-3.so.0
    #11 0x00007ffff2d4609c in ?? () from /usr/lib/libgtk-3.so.0
    #12 0x00007ffff2d4a8ca in gtk_window_set_icon_name () from /usr/lib/libgtk-3.so.0
    #13 0x000000000044ba23 in ?? ()
    #14 0x00007fffe3358eb8 in ffi_call_unix64 () from /usr/lib/libffi.so.6
    #15 0x00007fffe3358820 in ffi_call () from /usr/lib/libffi.so.6
    #16 0x00007ffff168ac98 in g_cclosure_marshal_generic () from /usr/lib/libgobject-2.0.so.0
    #17 0x00007ffff168a458 in g_closure_invoke () from /usr/lib/libgobject-2.0.so.0
    #18 0x00007ffff169b40d in ?? () from /usr/lib/libgobject-2.0.so.0
    #19 0x00007ffff16a3219 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #20 0x00007ffff16a3462 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #21 0x000000000044d3bc in ?? ()
    #22 0x00007ffff168d2b0 in g_cclosure_marshal_VOID__BOXEDv () from /usr/lib/libgobject-2.0.so.0
    #23 0x00007ffff168a687 in ?? () from /usr/lib/libgobject-2.0.so.0
    #24 0x00007ffff16a2778 in g_signal_emit_valist () from /usr/lib/libgobject-2.0.so.0
    #25 0x00007ffff16a3462 in g_signal_emit () from /usr/lib/libgobject-2.0.so.0
    #26 0x00007ffff2bf293c in ?? () from /usr/lib/libgtk-3.so.0
    My graphic card (iI guess this has something to do with xorg):
    AMD Mobility Radeon HD 4550 (using catalyst legacy driver 13.1 with Xorg 1.12)
    Last edited by szorti (2013-04-24 08:40:26)

    I did a little test:
    - upgraded to xorg 1.14
    - switched from catalyst to xf86-video-ati drive
    Most of the errors dissappeared (GOA still crashes).
    But now i can only see message tray using keyboard shortcut (super + m). I read that I need to move my mouse fast to the botton edge of my screen - does not work - instead it show up randomly when i moved mouse near the bottom edge.
    I don't want to use the open source drivers (slow and laggy with multi monitor setup I'm using). I hope gnome devs will fix this bugs soon.
    SOLUTION (to still use catalyst):
    I found out that this is an Xorg 1.12 bug.
    Bug: http://lists.debian.org/debian-x/2012/12/msg00133.html
    To solve this use patch from this bugreport to compile xorg 1.12
    I used this aur packages:
    1. https://aur.archlinux.org/packages/xf86 … evdev1.12/
    2. https://aur.archlinux.org/packages/xorg-server1.12/ - I have edited PKGBUILD to include patch from bug report above
    PKGBUILD and patch:
    https://gist.github.com/winglot/5450630
    Last edited by szorti (2013-04-24 08:40:10)

  • JVM Crash with Signal 10.

    Hi,
    We are facing a random problem in our production setup where the JVM crashes with the following error message.
    Unexpected Signal : 10 occurred at PC=0xFA3442A4
    Function=java.lang.String.startsWith(Ljava/lang/String;)Z (compiled Java code)
    Library=(N/A)
    Current Java thread:
    Dynamic libraries:
    0x10000 /usr/j2sdk1.4.2_03/jre/bin/java
    0xff350000 /usr/lib/libthread.so.1
    0xff340000 /usr/lib/libdl.so.1
    0xff200000 /usr/lib/libc.so.1
    0xff390000 /usr/platform/SUNW,Sun-Fire-V440/lib/libc_psr.so.1
    0xfe000000 /usr/j2sdk1.4.2_03/jre/lib/sparc/server/libjvm.so
    0xff2d0000 /usr/lib/libCrun.so.1
    0xff1e0000 /usr/lib/libsocket.so.1
    0xff100000 /usr/lib/libnsl.so.1
    0xff0b0000 /usr/lib/libm.so.1
    0xff1c0000 /usr/lib/libsched.so.1
    0xff090000 /usr/lib/libmp.so.2
    0xff050000 /usr/j2sdk1.4.2_03/jre/lib/sparc/native_threads/libhpi.so
    0xfe7d0000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libverify.so
    0xfe790000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libjava.so
    0xff020000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libzip.so
    0xfe630000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libjdwp.so
    0xfe610000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libdt_socket.so
    0xfe5f0000 /usr/lib/nss_files.so.1
    0xc17a0000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libnet.so
    0xc16e0000 /BayPackets/rsisas/SAS/ASE5.1.1/sol28g/lib/libjavautil.so
    0xc16c0000 /usr/j2sdk1.4.2_03/jre/lib/sparc/libioser12.so
    Heap at VM Abort:
    Heap
    par new generation total 32704K, used 3150K [0xc5800000, 0xc7800000, 0xc7800000)
    eden space 32640K, 9% used [0xc5800000, 0xc5b13b20, 0xc77e0000)
    from space 64K, 0% used [0xc77f0000, 0xc77f0000, 0xc7800000)
    to space 64K, 0% used [0xc77e0000, 0xc77e0000, 0xc77f0000)
    concurrent mark-sweep generation total 753664K, used 490987K [0xc7800000, 0xf5800000, 0xf5800000)
    concurrent-mark-sweep perm gen total 29784K, used 17111K [0xf5800000, 0xf7516000, 0xf9800000)
    Local Time = Mon Oct 2 18:18:51 2006
    Elapsed Time = 7215947
    # HotSpot Virtual Machine Error : 10
    # Error ID : 4F530E43505002EF 01
    # Please report this error at
    # http://java.sun.com/cgi-bin/bugreport.cgi
    # Java VM: Java HotSpot(TM) Server VM (1.4.2_03-b02 mixed mode)
    We are using the J2SE version 1.4.2_03 and running it on the Solaris OS 5.8. Have anybody seen this problem before? It will be great if anybody could provide some pointers to solve this problem.
    Thanks
    Ravi.

    ... Do you have any idea whether this is a known
    issue in jdk1.4.2_03 and any suggestions on how to
    check whether it is fixed in the later versions.The hs_err log that you included above, points to a rather generic
    error location (the error log dump has since been much improved
    and provides much more useful information than the dump from
    1.4.2_03 above). As such it is difficult to tell what the bug is that
    caused the crash here.
    Running with a later version might provide further clues (or it
    might be fixed already). Recall that at a refresh rate of an
    update release per each 3 months, 1.4.2_03 is already
    at least 3 years old (and perhaps more). A number of bugs
    especially in the Concurrent Mark Sweep Collector being used
    here have since been fixed.
    If testing with 1.4.2_13 is not feasible, please provide your Sun
    support contact with a core file from the incident and that might
    lead us closer to the root cause and allow us to determine if
    this may have been fixed subsequently. They may also be able to
    provide you with a test JVM binary that may lead one closer to the
    root cause.

  • Safari and Mail.app crash with SIGSEGV after Monolingual / upgrade

    In order to upgrade to snow leopard, I had to free a bunch of disk space. So, I foolishly ran Monolingual to remove unused languages. I don't recall exactly which I removed, but I do remember that I did not remove Japanese. I then upgraded to Snow Leopard, but now I have a Safari and a Mail.app that crash consistently with segmentation faults.
    Mail.app crashes anytime I attempt to view a message with Japanese characters in it. I click the subject line, it tries to display it, and then crashes with a segmentation fault in Dispatch queue: com.apple.root.default-priority in the com.apple.datadetectorscore _FillNextTokenInCache method.
    Safari crashes in HistoryTextCache caching from the method com.apple.SearchKit UniCharParserGetNextWord after a few pages (5m) of browsing. Doesn't seem to matter what pages I'm viewing. Although I can force it to crash just after successfully rendering a page with japanese characters by visiting such a page.
    They repeatably crash the same way. Is there any way to fix this without having to reinstall the OS?

    I'm still having this problem. Anybody have any ideas?
    Thanks,
    eric

  • Mail App Crash with Contact Photos

    Hi @ all,
    i use Mac OS X 10.10 and my Mail App is crashing every time i use contact photos.
    If i want to open a mail from one of my contacts with a picture, Mail App is crashs ...
    If i want to show contact photos in my E-Mail List, the Mail App crashes every time i open it.
    Does anyone know this problem and can help me?
    Thanks a lot
    Alex

    Who has also this problem?

  • Photogene App crashes with some photos with iOS 8 update, not others when in edit

    SInce the iOS 8 update some when I select a photograph or when scrolling pictures in an Album, the App crashes.  This never happened before this new upgrade.  I've used it for months.  Any help appreciate.  With certain pictures, no problem.  I make personal cards for printing and this app has been great until now.  I go into one album, scroll, select a photograph p, work in it, no proble.  I move to another Album, and whil scrolling it crashes, repeatedly..  This app replaced the iPhoto App as that one was multiplying pictures like rabbits and alleged fixes and visits to the Apple Store did not solve the problem.  The Appke Store personnell were great but no one could fix that issue.  I deleted it.  Many, many others everywhere had that similar problem.  Any help with this crashing problem is appreciated. 

    Thank you, Ralph,  for your reply.  I'm a practical person so I tried trial and error.  It was recents ans larger Albums that the Photogene crashed.  I could make a card from my smaller Albums.  So I transferred a few photos from the ones that crashed to the successful Album(s).  I could edit, put Text, save, export to my library, e-mail and post on FaceBoo.  That worked for me.  A round about way, but it works.  Again, thanks.
    Dan

  • All CS2 apps crash with "Read Only Memory Exception" error.

    Machine Specs.
    Apple G5 1.8ghz DP
    OS X 10.4.10
    It doesn't matter which one I open, they all crash with the same error. This started when a user placed a support ticket for their mac not starting up. I wasn't able to save the user so I created a new user, and then moved their desktop files over to the new user. However the only files I moved were those on the desktop, and their Notes data directory.
    Thinking my job done I marked the tickets closed and walked away.
    I got a call later when the user came into the office and the issue was that Indesign CS2 was crashing with a "Read Only Memory Exception" error. I first deleted the Preferences on the machine. That didn't work.
    So I created a new user to see if it was the user causing the errors. I received the same error when opening Indesign CS2 from the brand new user account. I also tested all other CS2 programs and got the same errors.
    Next I tried deleting the CS2 programs and re-installing them. No luck, same error, even with a new user. I have not re-installed any plug-ins with the new App installs yet.
    Removed all fonts, and ran a font cache cleaner. Same error.
    Finally, the last thing I've tried is to manually remove every adobe application on the machine. Acrobat 5/6/7, CS1, CS2...etc. I have also removed any Adobe files/folders in the //library/, and /$home/Library/.
    Yet I still get the same error. Short of a complete wipe I'm not sure where to proceed next. I'm really confused and hoping someone can give me some clues.

    Thanks to a comcast permissions error any new files I upload to my comcast.net pages requires the administrator username/password to even see the file to download it. Simply giving out the URL for new files results in page not found errors.
    So for the forseeable future I don't see any way to upload this file correctly. Its there on my webspace all 63megs of it. If I login through the FTP account I can upload and download to my hearts content but since anonymous access is disabled I'm not giving out my administrator login info.
    I've got a gig of space, using 22mb of it, and can't upload any more files because no-one has permissions to access them.
    I spent a half hour on the phone with comcast trying to figure this out. However I don't know whats going on with their end. I have a trouble ticket open for a level 3 tech, we'll see whats going on.
    So the Font Scrubber will remain unavailable for the time being unless someone wants to give me guest upload access to a FTP account. I'm not opening a fileshare account with anyone, don't like'm.

  • Apps crashing with high frequency.

    I bought my self an iPad for christmas and I love it. What I don't like is that the os is so buggy. I have constant problems with programs (apps) crashing on a fairly regular basis. I know what your thinking "maybe it's just a couple of poorly made apps that this poor shlub downloaded from the app store". Truth is though that this seems to be endemic throughout all of the apps including the native ones that come on the machine. Now I know that I am spoiled with Apple's "it just works" environment but this seems buggier then anything I had ever experienced all those years suffering with windows. If anyone knows what is going on and has some advice, or would just like to lament with me over this issue please respond to this post. To help assuage all of those that are going to post the usual 1 2 3 walk trough, I have preformed all of the prescribed first step fixes, and because of the nature of the issue I believe the problem to be in the foundation of the OS or perhaps hardware limitations. It is my great hope that the newest iteration of the OS fixes, or at least greatly limits the frequency of these app crashes.

    It's not the OS that is bug but the apps. Many developers are very sloppy coders which leads to their apps crashing.
    I would restore as a new iPad with no third party apps and see how it goes. If it runs fine, start adding your apps back one at a time until you start experiencing crashes. Get rid of the app that causes the crashes and see how things go at that point.

  • App crashing with reason :mediaserverd: RPCTimeout message received to terminate [0] with reason 'AddPropertyListenerImp'

    The app is crashing with the below crash log. And this is happening for users frequently but not reproducible by testers. Any ideas what is causing this and what needs to be done to fix this.
    Incident Identifier: 91BFB348-D640-40A3-84B9-E2481DC6698A
    CrashReporter Key: 75cdb5b332f13a5914553fbba315312a1ed46c40
    Hardware Model: iPad2,1
    OS Version: iPhone OS 6.1.3 (10B329)
    Kernel version: Darwin Kernel Version 13.0.0: Wed Feb 13 21:37:19 PST 2013; root:xnu-2107.7.55.2.2~1/RELEASE_ARM_S5L8940X
    Date: 2013-07-17 14:34:46 -0400
    Exception Code: 0xbe18d1ee
    Reason: mediaserverd: RPCTimeout message received to terminate [0] with reason 'AddPropertyListenerImp'
    Thermal Level: 0
    Thermal Sensors: 2692 2583 5127 2655 2771

    Oh, yeah - sorry but I'm still lost. Could you please explain......
    I guess this means the receiving server could not place the mail... the address was right ! It's my mail address at work. Excel attachments are allowed by this server......

  • Applescript Studio app crashes with link error (dyld) image not found

    I've built a small Applescript studio app that works fine on the development machine but when I run it on other machines it crashes with a dyld error, specifically:
    Link (dyld) error:
    Library not loaded: /System/Library/PrivateFrameworks/ZeroLink.framework/Versions/A/ZeroLink
    Referenced from: /Volumes/Discover Your Mac Spotlight movie/Table of Contents Viewer.app/Contents/MacOS/Table of Contents Viewer
    Reason: image not found
    Does any one know why this happens and how I can fix it?
    Thanks very much in advance...
    iMac G5 20   Mac OS X (10.4.2)  

    Rick,
    looks like you built the application in "Development" mode - switch the build style to "Deployment" and most probably things will be fine in the other machine.
    Andreas

Maybe you are looking for