Update to glib2-2.36.1-1 Causes Skype to Segfault

Pretty much the title. I get a segmentatation fault from skype with glib2-2.36.1-1, and it works fine with glib2-2.34.3-1. However, using glib2-2.34.3-1 makes other program (such as dwb) not start either:
dwb: symbol lookup error: /usr/lib/gio/modules/libgiognomeproxy.so: undefined symbol: g_simple_proxy_resolver_new
The error for skype with 2-36 is simply:
% skype
zsh: segmentation fault (core dumped) skype
This is skype version 4.1.0.20-6. I don't think I've done anything weird with any configurations --- I have a gtkrc-2.0 file but even with that moved it segfaults.
Can anyone help me resolve this issue? Thanks.

@ViruSzZ, neat. Your solution is obviously better.
ViruSzZ wrote:
Vladimiroff wrote:
We have to wait for a fix in glib2 on i686 and lib32-glib2 on x86_64. Until then, there is a temporary fix: downgrading (lib32-)glib2.
ArchWiki on Downgrading wrote:The Arch Rollback Machine (ARM) contains archived snapshots of all the repos going back to 1 November 2009.
Just go there and get (lib32-)glib2-2.34.3-1 for your arch
or just unpack 'lib32-glib2-2.34.3-1-$ARCH.pkg.tar.xz' somewhere and run skype as:
$ LD_PRELOAD=/home/d/Build/lib-gobject/libgobject-2.0.so.0.3400.3 skype

Similar Messages

  • Last op system update on mine/my wife's iPad causes all video apps (Netflix/Hulu/CBS/History,etc) to NOT flow uninterrupted; constant breaks

    Last op system update on mine/my wife's iPad causes all video apps (Netflix/Hulu/CBS/History,etc) to NOT flow uninterrupted; constant breaks.  Type problem into Safari and many folks having same problems wig Hulu and other video/TV apps crashing repeatedly!  It's EXTREMELY irritating and aggravating!   The apps didn't crash like that until AFTER the latest operating system update for iPads was pushed/downloaded.

    Among the alternatives not mentioned... Using a TiVo DVR, rather than the X1; a Roamio Plus or Pro would solve both the concern over the quality of the DVR, as well as providing the MoCA bridge capability the poster so desperately wanted the X1 DVR to provide. (Although the TiVo's support only MoCA 1.1.) Just get a third-party MoCA adapter for the distant location. Why the hang-up on having a device provided by Comcast? This seems especially ironic given the opinions expressed regarding payments over time to Comcast. If a MoCA 2.0 bridge was the requirement, they don't exist outside providers. So couldn't the poster have simply requested a replacement XB3 from the local office and configured it down to only providing MoCA bridging -- and perhaps as a wireless access point? Comcast would bill him the monthly rate for the extra device, but such is the state of MoCA 2.0. Much of the OP sounds like frustration over devices providing capabilities the poster *thinks* they should have.

  • If I install the update to Adobe Reader 10, will that cause problems with Acrobat Pro 9?

    Firefox (version 15.0.1) is telling me I need to install an update to Adobe Acrobat 9.4 in order to view pdf files in my browser. I use Acrobat Pro 9. The update is actually Adobe Reader 10, and I am wondering if I install this, will it cause problems with my version of Acrobat Pro?
    Because I am not sure if this is so, I have temporarily disabled the plug-in and now pdf files download automatically rather than display in my browser. I would prefer they open in my browser but do not want to upgrade to Acrobat X.
    My OS is Windows Vista. I did not include the "troubleshooting information" file because I'm not sure what specific info is being requested.
    Thanks for any help.

    Hi WMdotcom
    did you try to view pdf with your acrobat pro 9 ?
    see
    [https://support.mozilla.org/en-US/kb/change-firefox-behavior-when-open-file Change what Firefox does when you click on or download a file]
    [https://support.mozilla.org/en-US/kb/set-how-firefox-handles-different-file-types
    Set how Firefox handles different types of files]
    thank you

  • Same exact update runs fine in one db but causes ORA-00904 in another

    I have an update statement that runs fine in one db but causes "" error in another. The two databases table structures are the same. I checked for synonyms and reserved words on BASE and COMPANY_ID but did not come up with anything. The db where it is working is 10.2. The db where it is not working is 10.1.
    Here is the statement:
    1 UPDATE t_company base
    2 SET (company_name, company_name_sid, company_name_lco, canonical_name,
    3 short_name, short_name2) =
    4 (SELECT company_name, source_id, company_name_lco, canonical_name,
    5 short_name, short_name2
    6 FROM t_auth_company comp
    7 WHERE comp.company_id = base.company_id
    8 AND source_id =
    9 (SELECT source_id
    10 FROM (SELECT auth.source_id, trumping_order
    11 FROM t_auth_company auth,
    12 t_trumping_rule rl
    13 WHERE auth.company_id = base.company_id
    14 AND auth.company_name IS NOT NULL
    15 AND rl.source_id = auth.source_id
    16 AND rl.attribute_id = 'abc'
    17 ORDER BY rl.trumping_order)
    18 WHERE ROWNUM = 1))
    19 WHERE
    20 (-- The company has been updated
    21 company_id IN (
    22 SELECT company_id
    23 FROM t_auth_company auth
    24 WHERE auth.company_name_lco >= sysdate
    25 OR auth.company_id_lco >= sysdate)
    26 OR
    27 ( -- The trumping rule for the attribute has been changed
    28 SELECT MAX(last_changed_on)
    29 FROM t_trumping_rule rl
    30 WHERE rl.attribute_id = 'abc' ) >= sysdate
    31 )
    32 -- The company has been merged
    33 AND 1 < (SELECT COUNT (*)
    34 FROM t_auth_company auth
    35* WHERE auth.company_id = base.company_id)
    SQL> /
    WHERE auth.company_id = base.company_id
    ERROR at line 13:
    ORA-00904: "BASE"."COMPANY_ID": invalid identifier
    Thank You
    Boris

    Thank you for responding. It is syntactically working in the 10.2 database. Please, see this:
    SQL> UPDATE t_company base
    2 SET (company_name, company_name_sid, company_name_lco, canonical_name,
    3 short_name, short_name2) =
    4 (SELECT company_name, source_id, company_name_lco, canonical_name,
    5 short_name, short_name2
    6 FROM t_auth_company comp
    7 WHERE comp.company_id = base.company_id
    8 AND source_id =
    9 (SELECT source_id
    10 FROM (SELECT auth.source_id, trumping_order
    11 FROM t_auth_company auth,
    12 t_trumping_rule rl
    13 WHERE auth.company_id = base.company_id
    14 AND auth.company_name IS NOT NULL
    15 AND rl.source_id = auth.source_id
    16 AND rl.attribute_id = 'abc'
    17 ORDER BY rl.trumping_order)
    18 WHERE ROWNUM = 1))
    19 WHERE
    20 (-- The company has been updated
    21 company_id IN (
    22 SELECT company_id
    23 FROM t_auth_company auth
    24 WHERE auth.company_name_lco >= sysdate
    25 OR auth.company_id_lco >= sysdate)
    26 OR
    27 ( -- The trumping rule for the attribute has been changed
    28 SELECT MAX(last_changed_on)
    29 FROM t_trumping_rule rl
    30 WHERE rl.attribute_id = 'abc' ) >= sysdate
    31 )
    32 -- The company has been merged
    33 AND 1 < (SELECT COUNT (*)
    34 FROM t_auth_company auth
    35 WHERE auth.company_id = base.company_id)
    36 /
    0 rows updated.
    SQL>
    The table structures are as follows:
    CREATE TABLE RTCR_UCDB.T_AUTH_COMPANY
    AUTH_COMPANY_ID NUMBER(22),
    SOURCE_ID NUMBER(3) NOT NULL,
    LD_COMPANY_ID NUMBER(22),
    SOURCE_COMPANY_ID VARCHAR2(150 BYTE),
    MATCH_DECISION NUMBER(1) DEFAULT 0 NOT NULL,
    MATCH_DECISION_LCO DATE DEFAULT sysdate,
    COMPANY_ID NUMBER(22),
    COMPANY_ID_LCO DATE,
    COMPANY_NAME VARCHAR2(150 BYTE),
    COMPANY_NAME_LCO DATE DEFAULT sysdate,
    CANONICAL_NAME VARCHAR2(150 BYTE),
    SHORT_NAME VARCHAR2(150 BYTE),
    SHORT_NAME2 VARCHAR2(150 BYTE),
    URL VARCHAR2(150 BYTE),
    URL_LCO DATE DEFAULT sysdate,
    NURL VARCHAR2(150 BYTE),
    PRIMARY_SIC VARCHAR2(150 BYTE),
    PRIMARY_SIC_LCO DATE DEFAULT sysdate,
    PRIMARY_TICKER VARCHAR2(15 BYTE),
    PRIMARY_TICKER_LCO DATE DEFAULT sysdate,
    EXCHANGE_ID VARCHAR2(60 BYTE),
    EXCHANGE_ID_LCO DATE DEFAULT sysdate,
    NEXCHANGE_ID VARCHAR2(60 BYTE),
    ADDRESS VARCHAR2(150 BYTE),
    ADDRESS_LCO DATE DEFAULT sysdate,
    NADDRESS VARCHAR2(150 BYTE),
    NADDRESS_CONTAINS VARCHAR2(150 BYTE),
    CITY VARCHAR2(150 BYTE),
    CITY_LCO DATE DEFAULT sysdate,
    NCITY VARCHAR2(150 BYTE),
    STATE VARCHAR2(150 BYTE),
    STATE_LCO DATE DEFAULT sysdate,
    NSTATE VARCHAR2(150 BYTE),
    POSTAL_CODE VARCHAR2(15 BYTE),
    POSTAL_CODE_LCO DATE DEFAULT sysdate,
    NPOSTAL_CODE VARCHAR2(15 BYTE),
    COUNTRY_ID VARCHAR2(10 BYTE),
    COUNTRY_ID_LCO DATE DEFAULT sysdate,
    NCOUNTRY_ID VARCHAR2(10 BYTE),
    TELEPHONE VARCHAR2(60 BYTE),
    TELEPHONE_LCO DATE DEFAULT sysdate,
    NPHONE VARCHAR2(60 BYTE),
    PHONE_7D VARCHAR2(60 BYTE),
    PHONE_AREA VARCHAR2(60 BYTE),
    FAX VARCHAR2(60 BYTE),
    FAX_LCO DATE DEFAULT sysdate,
    NFAX VARCHAR2(60 BYTE),
    GW_COMPANY_ID VARCHAR2(150 BYTE),
    GW_COMPANY_ID_LCO DATE DEFAULT sysdate,
    CIK_NUMBER VARCHAR2(150 BYTE),
    CIK_NUMBER_LCO DATE DEFAULT sysdate,
    IRS_EIN VARCHAR2(150 BYTE),
    IRS_EIN_LCO DATE DEFAULT sysdate,
    MIN_DATA_FLAG VARCHAR2(1 BYTE) DEFAULT 'N' NOT NULL,
    OBSOLETE_FLAG VARCHAR2(1 BYTE) DEFAULT 'N' NOT NULL,
    OBSOLETE_FLAG_LCO DATE,
    LAST_CHANGED_BY VARCHAR2(50 BYTE) DEFAULT user NOT NULL,
    LAST_CHANGED_ON DATE DEFAULT sysdate NOT NULL,
    CREATED_ON DATE NOT NULL
    CREATE TABLE RTCR_UCDB.T_TRUMPING_RULE
    SOURCE_ID NUMBER(3) NOT NULL,
    ATTRIBUTE_ID NUMBER(5) NOT NULL,
    TRUMPING_ORDER NUMBER(3),
    LAST_CHANGED_BY VARCHAR2(50 BYTE) DEFAULT USER,
    LAST_CHANGED_ON DATE DEFAULT sysdate
    CREATE TABLE RTCR_UCDB.T_COMPANY
    COMPANY_ID NUMBER(22),
    COMPANY_NAME VARCHAR2(150 BYTE),
    COMPANY_NAME_SID NUMBER(3),
    COMPANY_NAME_LCO DATE,
    CANONICAL_NAME VARCHAR2(150 BYTE),
    SHORT_NAME VARCHAR2(150 BYTE),
    SHORT_NAME2 VARCHAR2(150 BYTE),
    URL VARCHAR2(150 BYTE),
    URL_SID NUMBER(3),
    URL_LCO DATE,
    NURL VARCHAR2(150 BYTE),
    PRIMARY_SIC VARCHAR2(150 BYTE),
    PRIMARY_SIC_SID NUMBER(3),
    PRIMARY_SIC_LCO DATE,
    PRIMARY_TICKER VARCHAR2(15 BYTE),
    PRIMARY_TICKER_SID NUMBER(3),
    PRIMARY_TICKER_LCO DATE,
    EXCHANGE_ID VARCHAR2(60 BYTE),
    EXCHANGE_ID_SID NUMBER(3),
    EXCHANGE_ID_LCO DATE,
    NEXCHANGE_ID VARCHAR2(60 BYTE),
    ADDRESS VARCHAR2(150 BYTE),
    ADDRESS_SID NUMBER(3),
    ADDRESS_LCO DATE,
    NADDRESS VARCHAR2(150 BYTE),
    CITY VARCHAR2(150 BYTE),
    CITY_SID NUMBER(3),
    CITY_LCO DATE,
    NCITY VARCHAR2(150 BYTE),
    STATE VARCHAR2(150 BYTE),
    STATE_SID NUMBER(3),
    STATE_LCO DATE,
    NSTATE VARCHAR2(150 BYTE),
    POSTAL_CODE VARCHAR2(15 BYTE),
    POSTAL_CODE_SID NUMBER(3),
    POSTAL_CODE_LCO DATE,
    NPOSTAL_CODE VARCHAR2(15 BYTE),
    COUNTRY_ID VARCHAR2(10 BYTE),
    COUNTRY_ID_SID NUMBER(3),
    COUNTRY_ID_LCO DATE,
    NCOUNTRY_ID VARCHAR2(10 BYTE),
    TELEPHONE VARCHAR2(60 BYTE),
    TELEPHONE_SID NUMBER(3),
    TELEPHONE_LCO DATE,
    NPHONE VARCHAR2(60 BYTE),
    PHONE_7D VARCHAR2(60 BYTE),
    PHONE_AREA VARCHAR2(60 BYTE),
    FAX VARCHAR2(60 BYTE),
    FAX_SID NUMBER(3),
    FAX_LCO DATE,
    NFAX VARCHAR2(60 BYTE),
    GW_COMPANY_ID VARCHAR2(150 BYTE),
    GW_COMPANY_ID_SID NUMBER(3),
    GW_COMPANY_ID_LCO DATE,
    CIK_NUMBER VARCHAR2(150 BYTE),
    CIK_NUMBER_SID NUMBER(3),
    CIK_NUMBER_LCO DATE,
    IRS_EIN VARCHAR2(150 BYTE),
    IRS_EIN_SID NUMBER(3),
    IRS_EIN_LCO DATE,
    LAST_CHANGED_BY VARCHAR2(50 BYTE) DEFAULT user NOT NULL,
    LAST_CHANGED_ON DATE DEFAULT sysdate NOT NULL,
    CREATED_ON DATE NOT NULL
    )

  • Somehow my app is not updated in appstore - not sure of the cause

    I have a very mysterious problem that started a month ago or so.
    I use Delphi XE4 for iOS development, but it cross compiles using Mac, so if there are things I need to check there, I can do that!
    I am somehow not uploading my new app versions correctly even if everything is seemingly correct. I determine this by downloading the "new" versions and seeing nothing has changed. (I have tried his 4 times now making some very visible changes, but the app is simply *not* updated)
    1) Before release I test my changes are included and working on device-debug + device-adhoc.
    2) I delete all files in my Delphi scratch/temp directory on Mac where Delphi places .ipa file. I then build + deploy from Delphi XE4 for release/appstore. Before uploading my .ipa file into "Application Loader" I make sure the .ipa file has just been generated - I confirm it by checking the date. I then select it and the upload/verification process goes fine without erros and some days later I get a message new app has been processed and released...
    3) I then uninstall my existing app (just to make sure) and download and install the new app version from appstore.
    But after these steps, the app has not changed, only version number has. This is driving me nuts. I think I have tried to eliminate potential places where I could have errored, but somehow somewhere something is going terrible wrong for me. What more can I check to pinpoint the cause of problem? (iTunes developer app overview does not tell me the filesize os the uploaded binaries, so I can not check/confirm 100% sure what iTunes receives)
    Any ideas? I recognize this is most likely a "Doh!" problem, but I have starred myself blind. I don't know what else to try. I know most people here don't use Delphi, but I am still hoping someone here has an idea for troubleshooting where the problem resides

    I had another person download the app, and he got the new version.
    So I guess it is my iPhone that is behaving weird. I delete all ninstances of the app (debug, old appstore download) on my "desktop" I can find before I download tthe new release from itunes app store. My iPhone even displays a "new" badge when I download the newest version from app-store, but somehow it still manages to launch the old one. I will try investigate this.

  • Iphone 3GS update went wrong - plugging in via USB causes instant PC crash

    I have (had) an iPhone 3GS, working well. I decided it was time to do a sync, and an update was suggested. A back up seems to have been created from the sync (visible in itunes), however there were messages afterwards that my PC had recovered from a serious error. The update became a restore and update, and I was given the choice to restore to my backup. This process appeared to go well enough, though at the end my PC kept crashing and trying to reboot but as long as my iPhone was connected via USB the PC could not reboot.
    Furthermore, a whole stack of info from my iPhone (all texts, all notes, around 600 out of 800 photos, settings, apps etc) has disappeared.
    Now every time I try to connect my iPhone to my PC it instantly crashes. Other things (eg headphones) still work in the same USB ports (I've tried multiple, front & back).
    I can see an itunes backup was created, but cannot connect to itunes on my PC to ascertain if there is any more data from the back up (namely my notes & photos). Any suggestions from similar experiences would be most welcome!

    Success.
    After a bit of a dig around google searches, it seems there's some sort of glitch between Apple and Logitech webcam device drivers.
    I removed the Logitech drivers, and voila! iPhone no longer causes instant meltdown of pc.
    My question now then, how do I work out if my incomplete restore can be turned into a complete restore? I was game enough to hit the restore button in itunes and it only gave me the option of returning to original settings, thus erasing what is currently on there. I cancelled that move!
    I would like what I have (all contacts, at least!) plus the disappeared old stuff (pics, notes, texts would be nice)...
    Am i right in understanding that iTunes will only keep one backup and any subsequent ones will replace the previous one? I'm nervous that if I backup what i have there now, it will replace a good backup that I really might be able to restore in full.
    Any thoughts on this?

  • Update to 10.4.10 seems to cause Safari to constantly crash

    I did a quick search and it seems that lots of users who have updated to 10.4.10 are experiencing frequent crashes with Safari. Safari has become so unreliable for me that I now use Firefox almost all the time instead of Safari. Since I updated to 10.4.10 Safari quits AT LEAST once a day and often 5 or 6 times. It can happen when I'm working at the computer or when I'm away from the computer and it is idle. I don't have any 'extras' like Safari Plus installed. I always do a full Combo Update install. I always Repair Disk Permissions before and after any update and before and after I install any software. The final straw last night was not only did Safari 'unexpectedly quit' it also removed itself from the dock!
    Any ideas??
    Cheers
    Tricia

    Hello again Hawaiian-Starman,
    I did exactly as you suggested in your last post and everything has been fine until just a little while ago - I was having lunch and when I came back to my computer I had the message on the screen that 'Safari had unexpectedly quit'.
    In case it's of use to you I'm doing a c&p of the Report -
    Date/Time: 2007-09-07 12:47:05.688 +1000
    OS Version: 10.4.10 (Build 8R218)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [66]
    Version: 2.0.4 (419.3)
    Build Version: 32
    Project Name: WebBrowser
    Source Version: 4190300
    PID: 28886
    Thread: 2
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000
    Thread 0:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001c10 pthreadmutexlock + 472
    2 com.apple.Foundation 0x92bc6a54 -[NSLock lock] + 28
    3 com.apple.Foundation 0x92c1dde8 -[NSHTTPCookieDiskStorage(NSInternal) _setCookiesWithoutSaving:whilePrivateBrowsing:] + 68
    4 com.apple.Foundation 0x92c1dd58 -[NSHTTPCookieDiskStorage setCookies:whilePrivateBrowsing:] + 36
    5 com.apple.Foundation 0x92c1d998 -[NSHTTPCookieStorage(NSInternal) _setCookies:forURL:policyBaseURL:] + 260
    6 com.apple.WebCore 0x959e7410 KWQKCookieJar::setCookie(KURL const&, KURL const&, QString const&) + 188
    7 com.apple.WebCore 0x959e72b0 DOM::HTMLDocumentImpl::setCookie(DOM::DOMString const&) + 116
    8 com.apple.WebCore 0x959e67e8 KJS::HTMLDocument::putValue(KJS::ExecState*, int, KJS::Value const&, int) + 1172
    9 com.apple.WebCore 0x959e60a4 KJS::DOMObject::put(KJS::ExecState*, KJS::Identifier const&, KJS::Value const&, int) + 44
    10 com.apple.JavaScriptCore 0x9589a660 KJS::Reference::putValue(KJS::ExecState*, KJS::Value const&) + 228
    11 com.apple.JavaScriptCore 0x958991bc KJS::AssignNode::evaluate(KJS::ExecState*) + 1344
    12 com.apple.JavaScriptCore 0x95898bbc KJS::ExprStatementNode::execute(KJS::ExecState*) + 120
    13 com.apple.JavaScriptCore 0x958936bc KJS::SourceElementsNode::execute(KJS::ExecState*) + 544
    14 com.apple.JavaScriptCore 0x9589342c KJS::BlockNode::execute(KJS::ExecState*) + 140
    15 com.apple.JavaScriptCore 0x958a031c KJS::DeclaredFunctionImp::execute(KJS::ExecState*) + 44
    16 com.apple.JavaScriptCore 0x9589fb98 KJS::FunctionImp::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 408
    17 com.apple.JavaScriptCore 0x95895698 KJS::Object::call(KJS::ExecState*, KJS::Object&, KJS::List const&) + 136
    18 com.apple.JavaScriptCore 0x95893fb8 KJS::FunctionCallNode::evaluate(KJS::ExecState*) + 1040
    19 com.apple.JavaScriptCore 0x95898bbc KJS::ExprStatementNode::execute(KJS::ExecState*) + 120
    20 com.apple.JavaScriptCore 0x9589356c KJS::SourceElementsNode::execute(KJS::ExecState*) + 208
    21 com.apple.JavaScriptCore 0x9589342c KJS::BlockNode::execute(KJS::ExecState*) + 140
    22 com.apple.JavaScriptCore 0x9588c264 KJS::InterpreterImp::evaluate(KJS::UString const&, KJS::Value const&, KJS::UString const&, int) + 1156
    23 com.apple.JavaScriptCore 0x9588bc70 KJS::Interpreter::evaluate(KJS::UString const&, int, KJS::UString const&, KJS::Value const&) + 64
    24 com.apple.WebCore 0x959aa0fc KJSProxyImpl::evaluate(QString, int, QString const&, DOM::Node const&) + 192
    25 com.apple.WebCore 0x95a546d0 KHTMLPart::executeScript(DOM::Node const&, QString const&, bool) + 196
    26 com.apple.WebCore 0x95a545d4 KHTMLPart::executeScript(QString const&, bool) + 64
    27 com.apple.WebCore 0x95a59bb8 KJS::ScheduledAction::execute(KJS::Window*) + 836
    28 com.apple.WebCore 0x95a59100 KJS::WindowQObject::timerEvent(QTimerEvent*) + 408
    29 com.apple.WebCore 0x959b2c64 -[KWQObjectTimerTarget sendTimerEvent] + 80
    30 com.apple.Foundation 0x92be3f68 __NSFireTimer + 116
    31 com.apple.CoreFoundation 0x907f1578 __CFRunLoopDoTimer + 184
    32 com.apple.CoreFoundation 0x907ddef8 __CFRunLoopRun + 1680
    33 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    34 com.apple.HIToolbox 0x93298b20 RunCurrentEventLoopInMode + 264
    35 com.apple.HIToolbox 0x932981b4 ReceiveNextEventCommon + 380
    36 com.apple.HIToolbox 0x93298020 BlockUntilNextEventMatchingListInMode + 96
    37 com.apple.AppKit 0x9377dae4 _DPSNextEvent + 384
    38 com.apple.AppKit 0x9377d7a8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    39 com.apple.Safari 0x00006740 0x1000 + 22336
    40 com.apple.AppKit 0x93779cec -[NSApplication run] + 472
    41 com.apple.AppKit 0x9386a87c NSApplicationMain + 452
    42 com.apple.Safari 0x0005c77c 0x1000 + 374652
    43 com.apple.Safari 0x0005c624 0x1000 + 374308
    Thread 1:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92bf0170 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x92bf00a8 -[NSRunLoop run] + 76
    6 com.apple.WebKit 0x957963d0 +[WebFileDatabase _syncLoop:] + 176
    7 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2 Crashed:
    0 com.apple.CoreFoundation 0x907c1ff8 __CFStrConvertBytesToUnicode + 56
    1 com.apple.CoreFoundation 0x907f1e50 _CFStringCheckAndGetCharacters + 220
    2 com.apple.Foundation 0x92bbf1d8 -[NSCFString getCharacters:range:] + 80
    3 com.apple.Foundation 0x92bc86f0 -[NSString _newSubstringWithRange:zone:] + 172
    4 com.apple.Foundation 0x92bc8544 -[NSString componentsSeparatedByString:] + 324
    5 com.apple.Foundation 0x92c1d0a8 -[NSString(NSURLExtras) weblooksLikeDomainName] + 128
    6 com.apple.Foundation 0x92c1ce80 setDomain + 52
    7 com.apple.Foundation 0x92c1c984 -[NSHTTPCookie initWithProperties:] + 324
    8 com.apple.Foundation 0x92c1c824 +[NSHTTPCookie cookieWithProperties:] + 60
    9 com.apple.Foundation 0x92c2786c makeCookie + 288
    10 com.apple.Foundation 0x92c2770c -[NSArray(NSURLExtras) webmappedArrayWithFunction:context:] + 124
    11 com.apple.Foundation 0x92c1f4b0 -[NSHTTPCookieDiskStorage(NSInternal) _saveCookies] + 464
    12 com.apple.Foundation 0x92c1f1ac saveTimerCallback + 96
    13 com.apple.CoreFoundation 0x907f1578 __CFRunLoopDoTimer + 184
    14 com.apple.CoreFoundation 0x907ddef8 __CFRunLoopRun + 1680
    15 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    16 com.apple.Foundation 0x92c086a8 +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    17 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    18 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92c097e8 +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f88c select + 12
    1 com.apple.CoreFoundation 0x907f0434 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92be830c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Syndication 0x9a8e342c -[AsyncDB _run:] + 192
    4 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 ...romedia.Flash Player.plugin 0x06bcd688 nativeShockwaveFlashTCallFrame + 1368296
    3 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x9145863c HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914583dc CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90c034cc MPWaitOnSemaphore + 184
    3 ...romedia.Flash Player.plugin 0x06a34bac Flash_EnforceLocalSecurity + 1155856
    4 ...romedia.Flash Player.plugin 0x06a222c8 Flash_EnforceLocalSecurity + 1079852
    5 ...romedia.Flash Player.plugin 0x06a34958 Flash_EnforceLocalSecurity + 1155260
    6 ...romedia.Flash Player.plugin 0x06a34920 Flash_EnforceLocalSecurity + 1155204
    7 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    8 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c3c8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030eac pthreadcondwait + 480
    2 com.apple.Foundation 0x92be830c -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.AppKit 0x9381a708 -[NSUIHeartBeat _heartBeatThread:] + 324
    4 com.apple.Foundation 0x92be11a0 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9000b348 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000b29c mach_msg + 60
    2 com.apple.CoreFoundation 0x907ddba8 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907dd4ac CFRunLoopRunSpecific + 268
    4 ...dobe.AcrobatPlugin.Comments 0x8c69141c AcroPluginMain + 1225396
    5 ...dobe.AcrobatPlugin.Comments 0x8c692134 AcroPluginMain + 1228748
    6 ...ple.CoreServices.CarbonCore 0x90bc57b0 PrivateMPEntryPoint + 76
    7 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x90054388 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x90070be8 pthreadcond_timedwait_relativenp + 556
    2 com.apple.audio.CoreAudio 0x91469794 CAGuard::WaitFor(unsigned long long) + 204
    3 com.apple.audio.CoreAudio 0x914696a4 CAGuard::WaitUntil(unsigned long long) + 304
    4 com.apple.audio.CoreAudio 0x914678e8 HP_IOThread::WorkLoop() + 852
    5 com.apple.audio.CoreAudio 0x91467580 HPIOThread::ThreadEntry(HPIOThread*) + 16
    6 com.apple.audio.CoreAudio 0x914583dc CAPThread::Entry(CAPThread*) + 96
    7 libSystem.B.dylib 0x9002bd08 pthreadbody + 96
    Thread 2 crashed with PPC Thread State 64:
    srr0: 0x00000000907c1ff8 srr1: 0x100000000000d030 vrsave: 0x0000000000000000
    cr: 0x44024408 xer: 0x0000000020000000 lr: 0x00000000907f1e50 ctr: 0x000000000000000b
    r0: 0x0000000000000063 r1: 0x00000000f0182170 r2: 0x00000000a07bbb8c r3: 0x00000000ffdfffa9
    r4: 0x0000000000000000 r5: 0x000000000000000b r6: 0x0000000000000000 r7: 0x000000000000000b
    r8: 0x0000000030303000 r9: 0x0000000000000001 r10: 0x00000000907c1fd0 r11: 0x0000000000000000
    r12: 0x000000000000000b r13: 0x0000000000000000 r14: 0x0000000000000001 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x00000000a2bdf2e0 r18: 0x00000000a2bdf2e0 r19: 0x00000000a2bdf2e0
    r20: 0x000000000000002d r21: 0x00000000a2bc706c r22: 0x00000000a2bd8400 r23: 0x000000000000000f
    r24: 0x0000000001800000 r25: 0x00000000a2bdc220 r26: 0x00000000a2bdae2c r27: 0x00000000ffdfffc0
    r28: 0x0000000000000000 r29: 0x00000000ffdfffa8 r30: 0x00000000ffdfffa0 r31: 0x0000000092bbf188
    Binary Images Description:
    0x1000 - 0xdcfff com.apple.Safari 2.0.4 (419.3) /Applications/Safari.app/Contents/MacOS/Safari
    0x5b7000 - 0x5b8fff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x5c8000 - 0x5c8fff com.apple.bluetooth.SCOCoreAudioDriverIDPlugIn 1.7.14 (1.7.14f14) /System/Library/Extensions/IOBluetoothFamily.kext/Contents/PlugIns/IOBluetoothS COAudioDriver.kext/Contents/Resources/IOBluetoothSCOAudioDriverIDPlugIn.bundle/C ontents/MacOS/IOBluetoothSCOAudioDriverIDPlugIn
    0x17a8000 - 0x17aafff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x6917000 - 0x6c2bfff com.macromedia.Flash Player.plugin 9.0.28 (1.0.4f22) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x7e36000 - 0x7f2bfff com.elgato.mpegsupport EyeTV MPEG Support 1.0.6 (build 42) (1.0.6) /Library/QuickTime/EyeTV MPEG Support.component/Contents/MacOS/EyeTV MPEG Support
    0x8cdb000 - 0x8d14fff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0xd265000 - 0xd288fff com.adobe.acrobat.pdfviewer 8.1.0 /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0xff24000 - 0xff39fff com.adobe.selfhealer AdobeSelfHealing version 2.1.0 (2.1.0) /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealing
    0x10e7b000 - 0x10ed5fff com.adobe.ESD.AdobeUpdaterLibFramework AdobeUpdater 5.1.0.1082 (5.1.0.1082) /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Updater.acroplugin/Contents/Frameworks/AdobeUpdate r.framework/AdobeUpdater
    0x40000000 - 0x4009ffff AdobeJP2K /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x419b0000 - 0x419effff com.apple.QuickTimeFireWireDV.component 7.2 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x83f8c000 - 0x84b5dfff com.adobe.Acrobat.framework Acrobat version 8.0.0 (8.0.0) /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x869f5000 - 0x86a24fff com.adobe.AcrobatPlugin.WebLink 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/WebLink.acroplugin/Contents/MacOS/WebLink
    0x86cab000 - 0x86cd2fff com.adobe.AcrobatPlugin.Updater 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Updater.acroplugin/Contents/MacOS/Updater
    0x87361000 - 0x87453fff com.adobe.AcrobatPlugin.Spelling 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Spelling.acroplugin/Contents/MacOS/Spelling
    0x87567000 - 0x87581fff com.adobe.AcrobatPlugin.SendMail 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/SendMail.acroplugin/Contents/MacOS/SendMail
    0x875bd000 - 0x8762afff com.adobe.AcrobatPlugin.Search 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Search.acroplugin/Contents/MacOS/Search
    0x879bd000 - 0x87a1efff com.adobe.AcrobatPlugin.SaveAsRTF 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/SaveAsRTF.acroplugin/Contents/MacOS/SaveAsRTF
    0x87aba000 - 0x87b23fff com.adobe.AcrobatPlugin.Reflow 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Reflow.acroplugin/Contents/MacOS/Reflow
    0x87bd1000 - 0x87be7fff com.adobe.AcrobatPlugin.ReadOutLoud 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/ReadOutLoud.acroplugin/Contents/MacOS/ReadOutLoud
    0x87c12000 - 0x882c7fff com.adobe.AcrobatPlugin.PPKLite 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x88f4f000 - 0x88fe4fff com.adobe.AcrobatPlugin.PDDom 8.0.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/PDDom.acroplugin/Contents/MacOS/PDDom
    0x8916e000 - 0x89339fff com.adobe.AcrobatPlugin.Multimedia 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Multimedia.acroplugin/Contents/MacOS/Multimedia
    0x897a8000 - 0x89c47fff com.adobe.AcrobatPlugin.MakeAccessible 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/MakeAccessible.acroplugin/Contents/MacOS/MakeAcces sible
    0x8b128000 - 0x8b130fff com.adobe.AcrobatPlugin.HLS 8.0.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/HLS.acroplugin/Contents/MacOS/HLS
    0x8b140000 - 0x8b16bfff com.adobe.AcrobatPlugin.EWH 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/EWH.acroplugin/Contents/MacOS/EWH
    0x8b1b4000 - 0x8b363fff com.adobe.AcrobatPlugin.EScript 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/EScript.acroplugin/Contents/MacOS/EScript
    0x8b57a000 - 0x8b5a1fff com.adobe.AcrobatPlugin.EFS 8.0.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/EFS.acroplugin/Contents/MacOS/EFS
    0x8c18d000 - 0x8c192fff com.adobe.AcrobatPlugin.eBook 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/eBook.acroplugin/Contents/MacOS/eBook
    0x8c1b0000 - 0x8c1d0fff com.adobe.AcrobatPlugin.DVA 8.0.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/DVA.acroplugin/Contents/MacOS/DVA
    0x8c224000 - 0x8c377fff com.adobe.AcrobatPlugin.DigSig 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/DigSig.acroplugin/Contents/MacOS/DigSig
    0x8c563000 - 0x8c994fff com.adobe.AcrobatPlugin.Comments 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Comments.acroplugin/Contents/MacOS/Comments
    0x8cfe9000 - 0x8d076fff com.adobe.AcrobatPlugin.Checkers 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Checkers.acroplugin/Contents/MacOS/Checkers
    0x8d28a000 - 0x8dc3cfff com.adobe.AcrobatPlugin.AcroForm 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x8e956000 - 0x8e9aafff com.adobe.AcrobatPlugin.Accessibility 8.1.0 /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Plug-ins/Accessibility.acroplugin/Contents/MacOS/Accessibil ity
    0x8ea27000 - 0x8ec8bfff AdobeCoolType /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
    0x8efdd000 - 0x8effafff AdobeBIB /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x8f03c000 - 0x8f4a3fff AdobeAGM /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x8fc37000 - 0x8fd27fff AdobeACE /Applications/Adobe Reader 8/Adobe Reader.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x8fe00000 - 0x8fe52fff dyld 46.12 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.75 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90894fff com.apple.CoreFoundation 6.4.7 (368.28) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908dd000 - 0x908ddfff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908df000 - 0x909e1fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3b000 - 0x90abffff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90ae9000 - 0x90b5bfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b71000 - 0x90b83fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8a000 - 0x90e61fff com.apple.CoreServices.CarbonCore 681.15 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec7000 - 0x90f47fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f91000 - 0x90fd3fff com.apple.CFNetwork 129.21 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe8000 - 0x91000fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91010000 - 0x91091fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d7000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.4 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.24 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918effff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91903000 - 0x91928fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193b000 - 0x9197dfff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91999000 - 0x919adfff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919bb000 - 0x91a01fff com.apple.ImageIO.framework 1.5.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a18000 - 0x91adffff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b2d000 - 0x91b42fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b47000 - 0x91b65fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6b000 - 0x91c22fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c71000 - 0x91c75fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c77000 - 0x91cdffff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce4000 - 0x91d21fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91d28000 - 0x91d41fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d46000 - 0x91d49fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d4b000 - 0x91e29fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e49000 - 0x91e49fff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e4b000 - 0x91f30fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f38000 - 0x91f57fff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fc3000 - 0x92031fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9203c000 - 0x920d1fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x920eb000 - 0x92673fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926a6000 - 0x929d1fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a01000 - 0x92aeffff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92af2000 - 0x92b7afff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bbb000 - 0x92de6fff com.apple.Foundation 6.4.8 (567.29) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f13000 - 0x92f31fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f3c000 - 0x92f96fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fb4000 - 0x92fb4fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fb6000 - 0x92fcafff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92fe2000 - 0x92ff2fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92ffe000 - 0x93013fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93025000 - 0x930acfff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930c0000 - 0x930cbfff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930d5000 - 0x93102fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9311c000 - 0x9312bfff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93137000 - 0x9319dfff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931ce000 - 0x9321dfff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9324b000 - 0x93268fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x9327a000 - 0x93287fff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93290000 - 0x9359efff com.apple.HIToolbox 1.4.9 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x936ee000 - 0x936fafff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x936ff000 - 0x9371ffff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93773000 - 0x93773fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93775000 - 0x93da8fff com.apple.AppKit 6.4.7 (824.41) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94135000 - 0x941a7fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941e0000 - 0x942a4fff com.apple.audio.toolbox.AudioToolbox 1.4.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x942f6000 - 0x942f6fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942f8000 - 0x944b8fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94502000 - 0x9453ffff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94547000 - 0x94597fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945a0000 - 0x945bafff com.apple.CoreVideo 1.4.1 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x945ca000 - 0x945eafff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x94678000 - 0x946b0fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946f3000 - 0x9470ffff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94723000 - 0x94767fff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x9478b000 - 0x9479afff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947a2000 - 0x947affff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x947f5000 - 0x9480efff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94815000 - 0x94b34fff com.apple.QuickTime 7.2.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c18000 - 0x94c89fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94dfe000 - 0x94f2efff com.apple.AddressBook.framework 4.0.5 (487) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94fc0000 - 0x94fcffff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fd7000 - 0x95004fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9500b000 - 0x9501bfff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9501f000 - 0x9504efff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x9505e000 - 0x9507bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x95794000 - 0x95822fff com.apple.WebKit 419.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9587e000 - 0x95913fff com.apple.JavaScriptCore 418.6.1 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x95950000 - 0x95c5dfff com.apple.WebCore 418.23 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95de6000 - 0x95e0ffff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x9609b000 - 0x960cdfff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96612000 - 0x96628fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x9662a000 - 0x9664afff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96658000 - 0x96666fff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9666e000 - 0x96681fff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x97866000 - 0x97873fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9830e000 - 0x983dffff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9845c000 - 0x9845cfff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9a8e0000 - 0x9a916fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9a933000 - 0x9a945fff com.apple.SyndicationUI 1.0.6 (54) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    Model: PowerMac8,2, BootROM 5.2.5f1, 1 processors, PowerPC G5 (3.1), 2 GHz, 1.5 GB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 128 MB
    Memory Module: DIMM0/J4000, 1 GB, DDR SDRAM, PC3200U-30330
    Memory Module: DIMM1/J4001, 512 MB, DDR SDRAM, PC3200U-30330
    AirPort: AirPort Extreme, 405.1 (3.90.34.0.p18)
    Modem: Jump, V.92, Version 1.0
    Bluetooth: Version 1.7.14f14, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Network Service: Internal Modem, PPP (PPPSerial), modem
    Serial ATA Device: WDC WD2500JD-40HBC0, 232.89 GB
    Parallel ATA Device: MATSHITADVD-R UJ-845
    USB Device: Bluetooth HCI, Up to 12 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: Apple Optical USB Mouse, Logitech, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    USB Device: Perfection610, EPSON, Up to 12 Mb/sec, 500 mA
    I'm afraid I don't know what to look for so I don't know what caused the problem. Should I simply repeat the procedure from your last post?
    Thank you for your help in this - I just wish they'd fix whatever it is that is causing this problem - which only started after I updated to 10.4.10.
    Cheers
    Tricia

  • J2SE update caused Skype problems..... ?????

    Good morning everybody.
    I hope my post will not be removed - I tried to get help from Skype support with no help, and since an Apple update caused my Intel iMac some problems, i hope this is the right place for my question
    A few days ago i received a message regarding automatic update from Apple regarding:
    Front R update
    QuickTime update
    J2SE50 Release 4
    When trying to install, i got the message that its not possible on my machine? So i was adviced from Apple support to manually install these updates, which i did, with success...
    Until i tried my Skype , and thats what i get in the chat-instant messaging window whenever i try to write a message to another Skype user:
    <div class="incoming context"> <div class="message-head"> <span class="sender"><a href="skypechatcontact://%senderScreenName%">%sender% <span class="date"><b> %time% <div class="clear"> <p>%message%<div id="insert">
    all i wrote is "testing" ...
    I believe its a problem with JAVA, so i was on the phone with Apple supprt for 2 hours, and after all the checks, they said that can not help me, as it is a problem of Skype ....
    Please note that the users i write to, CAN c what i write, but i can not c it, or c what they write me.
    Please also note that i erased all the Skype preferences, and all file sfrom library and applications support, tried to reinstall, erased all again, then tried to install the new 1.5 gold, and then Beta 2, but all the time the same problem...
    Would be very happy if someone here has any idea how to solve this issue... I looked and asked alot in Skype forums, seems that more people got my problem, but nobody was able to find a solution...
    Thank you very much for all the people here that try to help.
    Have a great day everybody,
    Elad
    Intel iMac   Mac OS X (10.4.7)  

    Hi, thanks alot for your reply.
    Well, after Apple support , checking with me some issues on my Intel imac decided its all ok with my OS, i thought would be good idea to erasae any Skype trace from my OS, after that i installed again several different versions of Skype, the 1.5 and the 2 beta, whcih worked great before it all started...
    And i just keep getting this "gibrish" codes instead of the text i type..
    Regarding the permissions, must admit i have no idea about this issue, c, i was using XP until buying the mac, so im learning all the time...
    I will be looking now for the info regarding permissions, and then try it.

  • 10.8.2 Update Causes Skype and Chrome to Crash

    I just finished the OSX 10.8.2 update and now Skype and Chrome/Rockmelt won't open on my Macbook Pro.
    I get the following error message:
    "RockMelt (or Chrome/Skype) quit unexpectedly.
    Click Reopen to open the application again. Click Report to see more detailed information and send a report to Apple."
    I've tried opening the applications again, (repeatedly) as well as restarting my computer to no avail. Everything was working perfectly prior to the update. Anyone else having the same problem? Or advice on what to do?

    So far, here are the programs that I've experienced problems with:
    Non-Apple Programs
    Chrome/Rockmelt
    Skype
    Remote Desktop
    Apple Programs
    iPhoto
    Dashboard (sometimes)
    AppStore (sometimes)
    Everthing worked perfectly until the update and now the programs won't even open. Also, I've redownloaded Chrome/Rockmelt and Skype with no success.
    Thanks!

  • Java update 1 for MAC OS 10.6 caused problems

    Hello,
    Today I installed the new java update 1 for Mac OS 10.6 and my eclipse is no longer working.
    Actually, the eclipse itself is starting up okay, the problem is when I try to startup jboss AS to start working I get the following error:
    ERROR: This jdwp native library will not work with this VM's version of JVMTI (1.0.36), it needs JVMTI 1.1[.102].
    This happened right after I installed the update.
    To make things more complicated, my workspace in eclipse is set to compile/deploy with a JDK 5 installation I have. Since the update was supposed to only affect the JDK 6 that comes with Snow Leopard, and I'm not using it to run JBoss AS in eclipse, in theory there shouldn't be any problem.
    The eclipse itself is running on JDK 6, however.
    Anyone have a clue? Unfortunately I'm not using time machine and cannot revert the update.

    I updated my Snow Leopard on Friday 4th, and since that moment i can't run MyEclipse 7.5, and i get this message:
    Process: myeclipse [252]
    Path: /Library/Genuitec/MyEclipse 7.5/myeclipse.app/Contents/MacOS/myeclipse
    Identifier: org.eclipse.eclipse
    Version: 3.4 (3.4)
    Code Type: X86 (Native)
    Parent Process: ??? [1]
    Date/Time: 2009-12-06 11:07:46.588 +0100
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 139693 sec
    Crashes Since Last Report: 12
    Per-App Interval Since Last Report: 36592 sec
    Per-App Crashes Since Last Report: 10
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 3
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libzip.jnilib 0x00548c32 0x547000 + 7218
    1 libzip.jnilib 0x00551db5 ZIP_ReadEntry + 387
    2 libclient.dylib 0x11aa841c 0x11a00000 + 689180
    3 libclient.dylib 0x11aa80a2 0x11a00000 + 688290
    4 libclient.dylib 0x11a55251 0x11a00000 + 348753
    5 libclient.dylib 0x11a54294 0x11a00000 + 344724
    6 libclient.dylib 0x11af1318 0x11a00000 + 987928
    7 libclient.dylib 0x11b1ad43 0x11a00000 + 1158467
    8 libclient.dylib 0x11b1f02b 0x11a00000 + 1175595
    9 ??? 0x1390e9f3 0 + 328264179
    10 ??? 0x13900227 0 + 328204839
    11 libclient.dylib 0x11b1931a 0x11a00000 + 1151770
    12 libclient.dylib 0x11b19036 0x11a00000 + 1151030
    13 libclient.dylib 0x11b18fdb 0x11a00000 + 1150939
    14 libclient.dylib 0x11b18a1b 0x11a00000 + 1149467
    15 libclient.dylib 0x11b187ab 0x11a00000 + 1148843
    16 libclient.dylib 0x11b1b64b 0x11a00000 + 1160779
    17 libclient.dylib 0x11b20b02 0x11a00000 + 1182466
    18 libclient.dylib 0x11b20a92 0x11a00000 + 1182354
    19 libclient.dylib 0x11af2a25 0x11a00000 + 993829
    20 libclient.dylib 0x11af1fae 0x11a00000 + 991150
    21 libclient.dylib 0x11af1e03 0x11a00000 + 990723
    22 libclient.dylib 0x11af1c29 0x11a00000 + 990249
    23 libclient.dylib 0x11af2bd9 0x11a00000 + 994265
    24 libclient.dylib 0x11ae92e0 0x11a00000 + 955104
    25 libclient.dylib 0x11a0e414 0x11a00000 + 58388
    26 libclient.dylib 0x11a016d3 0x11a00000 + 5843
    27 libclient.dylib 0x11bf6d49 JNICreateJavaVMImpl + 185
    28 eclipse_1115.so 0x0007d2e5 startJavaJNI + 202
    29 eclipse_1115.so 0x0007c3b7 startJavaVM + 119
    30 eclipse_1115.so 0x00079aa7 run + 1342
    31 org.eclipse.eclipse 0x00001e9e original_main + 884
    32 org.eclipse.eclipse 0x00002770 main + 768
    33 org.eclipse.eclipse 0x00001b0e _start + 216
    34 org.eclipse.eclipse 0x00001a35 start + 41
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x968740ea kevent + 10
    1 libSystem.B.dylib 0x96874804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x96873cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x96873a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x968734f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x96873336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x96873182 _workqkernreturn + 10
    1 libSystem.B.dylib 0x96873718 pthreadwqthread + 941
    2 libSystem.B.dylib 0x96873336 start_wqthread + 30
    Thread 3 Crashed:
    0 libclient.dylib 0x11afee4e 0x11a00000 + 1044046
    1 libclient.dylib 0x11afe86c 0x11a00000 + 1042540
    2 libclient.dylib 0x11afe7ed 0x11a00000 + 1042413
    3 libclient.dylib 0x11afe78b 0x11a00000 + 1042315
    4 libclient.dylib 0x11afe619 0x11a00000 + 1041945
    5 libSystem.B.dylib 0x968b954c machmsgserver + 380
    6 libclient.dylib 0x11a0eb75 0x11a00000 + 60277
    7 libclient.dylib 0x11a0e935 0x11a00000 + 59701
    8 libclient.dylib 0x11cc54f5 JVM_RaiseSignal + 441397
    9 libSystem.B.dylib 0x96943e52 pthreadbody + 27
    Thread 3 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x11afee3b ecx: 0x00000000 edx: 0x00000009
    edi: 0x000e2000 esi: 0x00000000 ebp: 0xb0184d38 esp: 0xb0184d24
    ss: 0x0000001f efl: 0x00010206 eip: 0x11afee4e cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000000
    Binary Images:
    0x1000 - 0x3fff +org.eclipse.eclipse 3.4 (3.4) /Library/Genuitec/MyEclipse 7.5/myeclipse.app/Contents/MacOS/myeclipse
    0x79000 - 0x8104b +eclipse_1115.so ??? (???) /Library/Genuitec/Common/plugins/org.eclipse.equinox.launcher.carbon.macosx1.0.101.R34x_v20080731/eclipse1115.so
    0xb6000 - 0xbdff7 com.apple.JavaVM 13.1.0 (13.1.0) <2842C4EE-869D-81E6-E771-062F583A1044> /System/Library/Frameworks/JavaVM.framework/JavaVM
    0xe4000 - 0xecff7 libverify.dylib ??? (???) <0E0C6835-68C5-A72F-8CA0-77857B632513> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libverify. dylib
    0x500000 - 0x507ff7 JavaNativeFoundation ??? (???) <1107BBC2-DFC1-CF1F-44EE-27F7D4349BE6> /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFou ndation.framework/Versions/A/JavaNativeFoundation
    0x518000 - 0x535ff7 libjava.jnilib ??? (???) <C4C57812-6A25-85AB-441B-DE1A71A8DF18> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libjava.jn ilib
    0x547000 - 0x553ff7 libzip.jnilib ??? (???) <1317EACC-2494-70C3-4B43-FC9D04579EAF> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0/Libraries/libzip.jni lib
    0x11a00000 - 0x11d50ffb libclient.dylib ??? (???) <A1BC00EA-6C14-2A98-3CA4-CA910B38771C> /System/Library/Frameworks/JavaVM.framework/Versions/1.5.0-leopard/Libraries/li bclient.dylib
    0x13000000 - 0x133f6fe7 libclient.dylib ??? (???) <6B8B4A7E-2844-3AD6-239E-122121D37485> /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libclient. dylib
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x900c6000 - 0x900c9ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90121000 - 0x90125ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90484000 - 0x9048eff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9048f000 - 0x9048fff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90490000 - 0x904d4ff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90557000 - 0x905b1ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90de8000 - 0x90e38fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x90e39000 - 0x91717ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91718000 - 0x9174dff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9174e000 - 0x91754fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91755000 - 0x91775fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91776000 - 0x91779fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9177a000 - 0x9179afe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x917dd000 - 0x91857fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91858000 - 0x91870ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x91871000 - 0x91871ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91879000 - 0x918c6feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91902000 - 0x9199efe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x919df000 - 0x919fbfe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x919fc000 - 0x91c6cffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91c80000 - 0x91d33fff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x91d8d000 - 0x921a3ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x921a4000 - 0x924c7fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x924c8000 - 0x925baff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x925bb000 - 0x925cdff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x925ce000 - 0x925d8fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92a9b000 - 0x92aa9fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x92aaa000 - 0x92ad0fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x92b1a000 - 0x92b1aff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x92b21000 - 0x92b85ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92b86000 - 0x92c60ff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92e66000 - 0x92f30fef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x930a3000 - 0x930e7fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x930e8000 - 0x930e8ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x93126000 - 0x93254fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9370c000 - 0x93eef4b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93ef0000 - 0x93f81fe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94120000 - 0x9443ffe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x94440000 - 0x946a2ff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x946a3000 - 0x946b7ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9471b000 - 0x94758ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x94759000 - 0x947c3fe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x94803000 - 0x9480afff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9484f000 - 0x948f6fe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9491f000 - 0x9491fff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94925000 - 0x94939fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x9493a000 - 0x94947ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94b6c000 - 0x94c1aff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94c1b000 - 0x94c2cff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x94c2d000 - 0x94c30ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x94c31000 - 0x94cb1feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94cb2000 - 0x94d4afe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x94d7e000 - 0x94d8aff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x94d8b000 - 0x94da9ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x94e42000 - 0x94e52ff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x94e53000 - 0x94e9cfe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9501b000 - 0x950c8fe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x9537f000 - 0x953cfff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x953dd000 - 0x95412ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95413000 - 0x9577aff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95aea000 - 0x95afffff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x95b0b000 - 0x95b10ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95b11000 - 0x95beeff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x95bef000 - 0x95ce5ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x96116000 - 0x96149ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x961d6000 - 0x96258ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x962cb000 - 0x96700ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x96780000 - 0x96782ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96783000 - 0x96832ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x96833000 - 0x96840ff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x9684d000 - 0x969f1feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x969f2000 - 0x96b74fe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x96c94000 - 0x96c94ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x96c95000 - 0x96d04ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x96d05000 - 0x96d06ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x96d07000 - 0x96d07ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x96f34000 - 0x96f3effb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x96f7b000 - 0x96f9dfef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96f9e000 - 0x96fa0ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x971a4000 - 0x97241fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97242000 - 0x97243ff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x97244000 - 0x97345fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x97366000 - 0x973acff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x973ad000 - 0x973d1ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x98380000 - 0x983e0fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x984ae000 - 0x9866afef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9866b000 - 0x986aeff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x986e1000 - 0x9879afe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x988a9000 - 0x988b2ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x988b3000 - 0x9895bffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x98b10000 - 0x98c87fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x98c88000 - 0x98c8cff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x98dfc000 - 0x98e4dff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x98e4e000 - 0x98e90fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x990a8000 - 0x991d4fe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x991fc000 - 0x99224ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x99226000 - 0x99241ff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99366000 - 0x99366ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x994c1000 - 0x994c5ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: MacBook2,1, BootROM MB21.00A5.B07, 2 processors, Intel Core 2 Duo, 2.16 GHz, 1 GB, SMC 1.17f0
    Graphics: Intel GMA 950, GMA 950, Built-In, spdisplaysintegratedvram
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), Atheros 5416: 2.0.19.4
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: Ethernet incorporada, Ethernet, en0
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MHW2120BH, 111,79 GB
    Parallel ATA Device: HL-DT-ST DVDRW GSA-S10N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8501, 0xfd400000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8205, 0x7d100000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021b, 0x1d200000
    USB Device: USB Optical Mouse, 0x046d (Logitech Inc.), 0xc019, 0x1d100000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8240, 0x5d200000

  • Updated an image in one article and cause users full downloading the folio

    Dear All,
    I have a misplaced image on the publish folio and we decided moving it from production. Our designer removed the image and updated the article via folio producer in CS5.5. Then we updated this folio to distribution service. We found all users had download this folio needs to re-download the entire folio (about 1GB) but not just the updated part (around 100K). Does anyone have any idea about this? or DPS is designed doing fully download for any update folio? Thanks.
    Andy

    Andy,
    Was this removed image in the HTMLResources zip file?  Unfortunately that's an all or nothing kind of thing when it comes to changes.  Hopefully this will improve in the future to allow for reusing photos, videos, etc. in multiple articles while only requiring the viewer app to download it once.  Having to replace all HTMLResources files every time you make a change to one of them definitely limits this feature's usefulness.
    If not then that is definitely abnormal behavior, the users should only have to re-download the changed article.
    Andrew

  • Updating N90 to V 5.0607.73 causes loss of date an...

    I have just successfully updated my N90 to 5.0607.73, and now whenever it is turned off it loses the time and date and asks for a new time and date whenever the unit is turned back on!
    It worked perfectly before I updated!!
    Help!
    Cheers Douglas Pearless.

    I updated from 3.0545.5.1 to 5.0607.7.3 and my clock stays on.
    Couple of things to try...
    1. Never switch off :-)
    Just switch to Offline profile at night.
    2. Format the device
    Set the time. Make a fresh backup of your data onto MMC. Format device by switching off > press & hold GRN, 3, * while switching on (until inner display lights up). Restore data.

  • UPDATE: Connecting with ODSM to OVD fails caused by: NoClassDefFoundError

    Hi all,
    I saw quite a lot of people checked my post from the 21st of May about connection problems with ODSM to OVD caused by: java.lang.NoClassDefFoundError. I was able to fix this by adding orawsdl.jar (containing javax.wsdl.OperationType class) located in the Oracle\Middleware\Oracle_IDM1\modules\oracle.webservices_11.1.1 directory to the classpath by editing startWeblogic.cmd.
    Although it works I think it still requires some attention from Oracle because I already had a similar problem with the Enterprise Manager as described in: Re: EM fails to start with NoClassDefFoundError: HTTPClient/ProtocolNotSuppExce As a Java programmer I know how hard class loading can sometimes be :-).
    Regards,
    Bart.

    Hi i having the some problems as you.....:(((
    javax.servlet.ServletException: Could not initialize class com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:277)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    Caused By: java.lang.NoClassDefFoundError: Could not initialize class com.octetstring.vde.admin.services.client.VDEAdminServiceSoapBindingStub
         at com.octetstring.vde.admin.services.client.ServerMgrServiceLocator.getVDEAdminService(ServerMgrServiceLocator.java:58)
         at oracle.ldap.odsm.model.ovd.APServerProxy.connect(APServerProxy.java:248)
         at oracle.ldap.odsm.model.ovd.APServerProxy.authenticateAs(APServerProxy.java:684)
         at oracle.ldap.odsm.model.ovd.APServerProxy.authenticate(APServerProxy.java:286)
         at oracle.ldap.odsm.model.ovd.APServerProxy.init(APServerProxy.java:216)
         at oracle.ldap.odsm.model.ovd.APServerProxy.<init>(APServerProxy.java:198)
         at oracle.ldap.odsm.model.ovd.OVDRoot.connectOVD(OVDRoot.java:185)
         at oracle.ldap.odsm.ui.common.Connection.connect(Connection.java:120)
         at oracle.ldap.odsm.ui.common.Visit.createConnection(Visit.java:663)
         at oracle.ldap.odsm.ui.common.PopupItem._createConnection(PopupItem.java:1815)
         at oracle.ldap.odsm.ui.common.PopupItem.alwaysAction(PopupItem.java:1763)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidadinternal.taglib.util.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:53)
         at org.apache.myfaces.trinidad.component.UIXComponentBase.broadcastToMethodBinding(UIXComponentBase.java:1245)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:183)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:326)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    Do you able to solve it ??
    Please advised
    Thanks a million...
    Thanks

  • Updating table with column NUMBER(6,2) causing concurrency exception in .NE

    For info,
    I try to update a table with a column defined as a NUMBER(6,2). I receive a concurrency exception.
    If I resize this column as a NUMBER(8,2), every thing works well.
    Bye

    I get the same problem. Changing from anything less than number(8,2) changes the vb datatype from single to double.
    Apparently ODP.NET cannot handle the single datatype.
    /Bj�

  • Why can't I use AVG Safe Search in 6.0? Update notified me that new version was cause.

    Incompatibility was reason given.

    You misread that message. Firefox only disables Avast extensions that aren't compatible with Firefox 6.0, it doesn't disable the entire anti-virus or security application. See Avast support about the availability of an update for the Avast extensions for Firefox.

Maybe you are looking for

  • Question on CKM and Data Quality

    As I understand, CKM only supports the check based on db constraints. If I want to have more complicated business logic built to the checking, does Data Quality sound like a good choice. Or other suggestions? In my case, I will need to check the data

  • HT4910 how to transfer contacts from i cloud to galaxy s3

    how to transfer contacts from i cloud to galaxy s3

  • SQL or PHP?

    Hello. I'm looking at Foundation PHP for Dreamweaver 8, by David Powers, and if anybody is familiar with the book, maybe they can help answer my question. Using Dave's random quotations tables authors, quotations in chapter 8: if I wanted to display

  • Blending multiple bitmap's, is there limits??

    Hello, I've got 50 bitmaps on the stage, lying on top each other with a blendshader on each image. I performe some addative, and I get the desired result. And waht suprises me alot is that there are no performence problems, not eaven online. How ever

  • Restoring single photo from Time Machine

    My iphoto library appears to function differently in Time Machine than it does when I access it from my MacHD, and I'm wondering if this is normal or if I screwed up a setting somewhere. From my Mac HD, when I click on my iPhoto library it launches i