Frequent stalling and Run Recover messages.

Solaris 9 x86 db-4.2.52.NC-sol9-intel-local
Using named+DLZ in "read only" mode, and local perl script that adds and removes IPs. Very frequently, currently about once a day, the DB will hang (named truss indicates db lock waits perhaps). I can shut everything down, and run recover a few times, and it generally comes back. But it can be somewhat annoying when it happens at 3 am.
Would it possibly help to upgrade to "db-4.6.21.NC" ? After compiling, but not installing, the 4.6.21.NC's db_stat reports "Invalid argument" which makes me suspect I would have to migrate the db first.
I guess I am hoping that either I open it wrong in my script and hence bleed locks or similar. Or, that upgrading to latest version might fix it as there are bugs fixed in that area.
DLZ opens the db with:
if ((result = (*db)->open(*db, NULL, db_file, db_name, db_type, DB_RDONLY | bdbhpt_threads, 0)) != 0) {
My perl script uses:
$env = new BerkeleyDB::Env
-Home => $dbenvpath,
-Flags => DB_INIT_CDB|DB_INIT_MPOOL|DB_CREATE,
-ErrFile => "error.txt",
-Verbose => 1 ;
$dns_data = tie my %cacheDnsData, 'BerkeleyDB::Hash',
-Env => $env,
-Filename => "$dbenvpath/$dbfilename",
-Flags => DB_CREATE,
-Property => DB_DUP | DB_DUPSORT,
-Subname => "dns_data",
or die "Cannot create master.dns_data.db: $BerkeleyDB::Error\n";
tie my %cacheDnsZone, 'BerkeleyDB::Btree',
-Env => $env,
-Filename => "$dbenvpath/$dbfilename",
-Flags => DB_CREATE,
-Subname => "dns_zone",
or die "Cannot create master.dns_zone.db: $BerkeleyDB::Error\n";
Various statistics about the DB (when it is working):
/usr/local/BerkeleyDB.4.2/bin/db_stat -c -h /etc/ns2/
114 Last allocated locker ID.
2147M Current maximum unused locker ID.
5 Number of lock modes.
1000 Maximum number of locks possible.
1000 Maximum number of lockers possible.
1000 Maximum number of lock objects possible.
8 Number of current locks.
19 Maximum number of locks at any one time.
14 Number of current lockers.
22 Maximum number of lockers at any one time.
5 Number of current lock objects.
7 Maximum number of lock objects at any one time.
13M Total number of locks requested.
13M Total number of locks released.
0 Total number of lock requests failing because DB_LOCK_NOWAIT was set.
6 Total number of locks not immediately available due to conflicts.
0 Number of deadlocks.
0 Lock timeout value.
0 Number of locks that have timed out.
0 Transaction timeout value.
0 Number of transactions that have timed out.
400KB The size of the lock region..
137 The number of region locks granted after waiting.
26M The number of region locks granted without waiting.
/usr/local/BerkeleyDB.4.2/bin/db_stat -d /etc/ns/DLZ.dnsdata.db -s dns_data -h /etc/ns2/61561 Hash magic number.8 Hash version number.
Flags: duplicates, multiple-databases, little-endian
8192 Underlying database page size.
0 Specified fill factor.
21M Number of keys in the database.
42M Number of data items in the database.
790653 Number of hash buckets.
2742M Number of bytes free on bucket pages (58% ff).
0 Number of overflow pages.
0 Number of bytes free in overflow pages (0% ff).
46746 Number of bucket overflow pages.
346M Number of bytes free in bucket overflow pages (10% ff).
3413 Number of duplicate pages.
27M Number of bytes free in duplicate pages (2% ff).
0 Number of pages on the free list.
/usr/local/BerkeleyDB.4.2/bin/db_stat -m -h /etc/ns2/
261KB 912B Total cache size.
1 Number of caches.
264KB Pool individual cache size.
0 Requested pages mapped into the process' address space.
14M Requested pages found in the cache (80%).
3823107 Requested pages not found in the cache.
0 Pages created in the cache.
3823136 Pages read into the cache.
18 Pages written from the cache to the backing file.
3823108 Clean pages forced from the cache.
0 Dirty pages forced from the cache.
0 Dirty pages written by trickle-sync thread.
32 Current total page count.
32 Current clean page count.
0 Current dirty page count.
37 Number of hash buckets used for page location.
22M Total number of times hash chains searched for a page.
9 The longest hash chain searched for a page.
29M Total number of hash buckets examined for page location.
49M The number of hash bucket locks granted without waiting.
51 The number of hash bucket locks granted after waiting.
27 The maximum number of times any hash bucket lock was waited for.
11M The number of region locks granted without waiting.
10 The number of region locks granted after waiting.
3823258 The number of page allocations.
8087530 The number of hash buckets examined during allocations
7 The max number of hash buckets examined for an allocation
3823109 The number of pages examined during allocations
1 The max number of pages examined for an allocation
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Pool File: /etc/ns2/DLZ.dnsdata.db
8192 Page size.
0 Requested pages mapped into the process' address space.
14M Requested pages found in the cache (80%).
3823107 Requested pages not found in the cache.
0 Pages created in the cache.
3823136 Pages read into the cache.
18 Pages written from the cache to the backing file.

Thank you for your replies.
I have changed to Transactional, both in the C program (named) and the perl script. I also finally got around to (called too many times at 3am) upgrading BerkeleyDB, so now we are running db-4.6.21.NC.
I have made an automated crontab script that runs every minute, if named do not respond, kill it, kill any perl scripts, and run recover. On an average day, it has to recover some 12-20 times a day.
What I have not quite figured out is, why this situation can occur:
Fri Nov 9 04:02:01 2007 add spammer 65.24.181.238 (cpe-65
-24-181-238.columbus.res.rr.com)
Fri Nov 9 04:07:05 2007 : add spammer 90.193.255.64 (5ac1ff4
0.bb.sky.com)
Fri Nov 09 04:12:00 2007 : FIXING CORRUPT RBL BDB
Fri Nov 9 04:36:14 2007 : add spammer 83.237.203.50 (ppp83-
237-203-50.pppoe.mtu-net.ru)
"named" runs all the time, but definitely opens the DB in read-only. The only other process that runs is the perl script. It added a record at 04:07. Since crontab runs every minute, everything was ok at :08 :09 :10 :11 but at 04:12 it was corrupt. Also notice that in this case, there was no over-lap. Just one writer, and one reader.
Anyway, I can add a test for the DB_LOCK_DEADLOCK error code, but since the "correct action is to close any cursors and abort" and my code only uses cursor with c_get (check for existence of data, or rather, get the second record under same key). All execution of the script is to do one transaction and quit. The "clean" part is not in use yet.
The entire perl script is available here:
http://www.lundman.net/ftp/rbl_add_ip.pl
I could try to upgrade to latest named, but since it opens the DB with READONLY I have assumed the problem must lie with my perl script. Since I recently changed from concurrent to transactional, I do not have any txn_begin() calls, I assume I will have to add them. The examples use db->put, but I assume it will be ok with the perl way of
$cacheDnsData{"$rbldomain $revIP"} ="$serial $revIP $ttl A 127.0.0.$code";
Or is it advisable to drop the db-tie, and use db->func style calls?
Lund

Similar Messages

  • "up and running  no message processing until now"

    Hi,
    I am doing a multiline scenario with File Content Conversion. In Adapter Monitor, Message is processed in the sender CC and in the Receiver CC it shows "up and running  no message processing until now"
    Whats mean by this ?. What is the status of my message ? Where I can monitor the message send from sender communication to the Receiver communication channel (If not in SXMB_MONI ?)
    Thanks,
    Ram

    hi,
    check adapter message monitor:
    http://hostname:portnumber/MessagingSystem/monitor/monitor.jsp
    you should see all message over there
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Safari 4.0.5 (Build 6531.22.7) Frequently Stalling and Crashing on Snow Leo

    In the last two months, the crash rate of my Safari browser (latest version 4.0.5) has gone once or twice a week to two or three times a day, at least.
    Is this a general problem which Apple are rectifying? Is it do with external plugins like Flash, or something else? I notice that the Top Sites page is a frequent source of stalling, and sometimes, crashing. It's a pity - it's a nice idea in principle, but in practice it's a nightmare to use.
    I'm thinking of switching to Google Chrome. But there's a problem. I can no longer download software by clicking on the DMG files, because that leads Safari to display a black page with nothing on it.
    I have to download by "Download Linked File As", which is fine in most cases. However, if I wish to download Chrome, for which there is no official download link, then I can't do it right now on Safari.

    Here is the most recent crash report for Safari (April 02, 2010):
    Process: Safari [6405]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 4.0.5 (6531.22.7)
    Build Info: WebBrowser-65312207~1
    Code Type: X86 (Native)
    Parent Process: launchd [114]
    PlugIn Path: /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    PlugIn Identifier: com.macromedia.Flash Player.plugin
    PlugIn Version: 10.0.42 (1.0.4f348472)
    Date/Time: 2010-04-02 19:23:23.028 +0100
    OS Version: Mac OS X 10.6.3 (10D573)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: KERNINVALIDADDRESS at 0x0000000070747468
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 ...romedia.Flash Player.plugin 0x1e2ced90 0x1e23d000 + 597392
    1 ...romedia.Flash Player.plugin 0x1e2c3783 0x1e23d000 + 550787
    2 ...romedia.Flash Player.plugin 0x1e432ebe 0x1e23d000 + 2055870
    3 ...romedia.Flash Player.plugin 0x1e5048e3 0x1e23d000 + 2914531
    4 ...romedia.Flash Player.plugin 0x1e504fe8 0x1e23d000 + 2916328
    5 ??? 0x35a3b7d2 0 + 899921874
    6 ??? 0x3649cde9 0 + 910806505
    7 ??? 0x364b125e 0 + 910889566
    8 ...romedia.Flash Player.plugin 0x1e753bca FlashPlayer10_0_42_34FlashPlayer + 2269418
    9 ...romedia.Flash Player.plugin 0x1e483dfa 0x1e23d000 + 2387450
    10 ...romedia.Flash Player.plugin 0x1e4852e5 0x1e23d000 + 2392805
    11 ...romedia.Flash Player.plugin 0x1e48631c 0x1e23d000 + 2396956
    12 ??? 0x35a36be2 0 + 899902434
    13 ??? 0x364b0ac9 0 + 910887625
    14 ...romedia.Flash Player.plugin 0x1e753bca FlashPlayer10_0_42_34FlashPlayer + 2269418
    15 ...romedia.Flash Player.plugin 0x1e76a596 FlashPlayer10_0_42_34FlashPlayer + 2362038
    16 ...romedia.Flash Player.plugin 0x1e76b083 FlashPlayer10_0_42_34FlashPlayer + 2364835
    17 ??? 0x364abc07 0 + 910867463
    18 ??? 0x364ab47e 0 + 910865534
    19 ...romedia.Flash Player.plugin 0x1e753bca FlashPlayer10_0_42_34FlashPlayer + 2269418
    20 ...romedia.Flash Player.plugin 0x1e47ffe9 0x1e23d000 + 2371561
    21 ...romedia.Flash Player.plugin 0x1e483dfa 0x1e23d000 + 2387450
    22 ...romedia.Flash Player.plugin 0x1e485ef8 0x1e23d000 + 2395896
    23 ...romedia.Flash Player.plugin 0x1e4c7944 0x1e23d000 + 2664772
    24 ...romedia.Flash Player.plugin 0x1e3fe246 0x1e23d000 + 1839686
    25 ...romedia.Flash Player.plugin 0x1e5d1bda FlashPlayer10_0_42_34FlashPlayer + 688378
    26 ...romedia.Flash Player.plugin 0x1e529d22 FlashPlayer10_0_42_34FlashPlayer + 578
    27 com.apple.WebKit 0x9589db58 -[WebNetscapePluginDocumentView sendEvent:isDrawRect:] + 312
    28 com.apple.WebKit 0x9589d9fe WebNetscapePluginEventHandlerCarbon::sendEvent(EventRecord*) + 94
    29 com.apple.WebKit 0x9589f498 WebNetscapePluginEventHandlerCarbon::sendNullEvent() + 136
    30 com.apple.CoreFoundation 0x96b1376b __CFRunLoopRun + 8059
    31 com.apple.CoreFoundation 0x96b110f4 CFRunLoopRunSpecific + 452
    32 com.apple.CoreFoundation 0x96b10f21 CFRunLoopRunInMode + 97
    33 com.apple.HIToolbox 0x963e60fc RunCurrentEventLoopInMode + 392
    34 com.apple.HIToolbox 0x963e5eb1 ReceiveNextEventCommon + 354
    35 com.apple.HIToolbox 0x963e5d36 BlockUntilNextEventMatchingListInMode + 81
    36 com.apple.AppKit 0x975e1135 _DPSNextEvent + 847
    37 com.apple.AppKit 0x975e0976 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    38 com.apple.Safari 0x0000c6c8 0x1000 + 46792
    39 com.apple.AppKit 0x975a2bef -[NSApplication run] + 821
    40 com.apple.AppKit 0x9759ac85 NSApplicationMain + 574
    41 com.apple.Safari 0x00002bad 0x1000 + 7085
    Thread 1: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x95a61262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a60f1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x95a62bb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x951ae3e6 ***::TCMalloc_PageHeap::scavengerThread() + 614
    4 ??? 0x006e0075 0 + 7209077
    Thread 2: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x95a6eac2 select$DARWIN_EXTSN$NOCANCEL + 10
    1 libSystem.B.dylib 0x95a5a34b dispatch_mgrinvoke + 454
    2 libSystem.B.dylib 0x95a59719 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x95a594be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x95a58f41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x95a58d86 start_wqthread + 30
    Thread 3: WebCore: IconDatabase
    0 libSystem.B.dylib 0x95a61262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a60f1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x95a62bb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.WebCore 0x98e6140a WebCore::IconDatabase::syncThreadMainLoop() + 266
    4 com.apple.WebCore 0x98e5d2d4 WebCore::IconDatabase::iconDatabaseSyncThread() + 180
    5 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    6 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 4: Safari: SafeBrowsingManager
    0 libSystem.B.dylib 0x95a332fa machmsgtrap + 10
    1 libSystem.B.dylib 0x95a33a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x96b1200f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x96b110f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x96b10f21 CFRunLoopRunInMode + 97
    5 com.apple.Safari 0x00025939 0x1000 + 149817
    6 com.apple.Safari 0x000255ec 0x1000 + 148972
    7 com.apple.Safari 0x00025585 0x1000 + 148869
    8 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    9 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x95a332fa machmsgtrap + 10
    1 libSystem.B.dylib 0x95a33a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x96b1200f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x96b110f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x96b10f21 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x947a7434 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x9476e8dc -[NSThread main] + 45
    7 com.apple.Foundation 0x9476e88c _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    9 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 6: Safari: SnapshotStore
    0 libSystem.B.dylib 0x95a61262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a60f1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x95a62bb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x95094c01 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 com.apple.Safari 0x0004224d 0x1000 + 266829
    5 com.apple.Safari 0x0004219d 0x1000 + 266653
    6 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    7 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x95a52286 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x96b5182d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    3 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x95a332fa machmsgtrap + 10
    1 libSystem.B.dylib 0x95a33a67 mach_msg + 68
    2 ...romedia.Flash Player.plugin 0x1e744bc4 FlashPlayer10_0_42_34FlashPlayer + 2207972
    3 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    4 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x95a33342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60eb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x95aa942f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1e51b44f 0x1e23d000 + 3007567
    4 ...romedia.Flash Player.plugin 0x1e534ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x1e51b8ff 0x1e23d000 + 3008767
    6 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    7 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x95a33342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60eb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x95aa942f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1e51b44f 0x1e23d000 + 3007567
    4 ...romedia.Flash Player.plugin 0x1e534ccf FlashPlayer10_0_42_34FlashPlayer + 45551
    5 ...romedia.Flash Player.plugin 0x1e51b8ff 0x1e23d000 + 3008767
    6 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    7 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 11: WebCore: LocalStorage
    0 libSystem.B.dylib 0x95a61262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x95a60f1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x95a62bb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x95094c01 ***::ThreadCondition::timedWait(***::Mutex&, double) + 81
    4 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    5 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x95a3335a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60ea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x95a8fa28 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x910e3965 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x910e6997 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x910e4294 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x910e3b2b HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x910e3a42 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    9 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x95a58bd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x95a59168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x95a58d86 start_wqthread + 30
    Thread 14:
    0 libSystem.B.dylib 0x95a3335a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60ea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x95a8fa28 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x92582465 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x925821a3 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x925a63eb TimerThread + 97
    6 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    7 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x95a33342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60eb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x95aa942f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1e6b239f FlashPlayer10_0_42_34FlashPlayer + 1607871
    4 ...romedia.Flash Player.plugin 0x1e67bcdb FlashPlayer10_0_42_34FlashPlayer + 1384955
    5 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    6 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x95a33342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60eb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x95aa942f pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x1e6b239f FlashPlayer10_0_42_34FlashPlayer + 1607871
    4 ...romedia.Flash Player.plugin 0x1e67bcdb FlashPlayer10_0_42_34FlashPlayer + 1384955
    5 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    6 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x95a3335a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x95a60ea1 pthread_condwait + 1066
    2 libSystem.B.dylib 0x95aa963c pthreadcondtimedwait + 47
    3 ...romedia.Flash Player.plugin 0x1e51b381 0x1e23d000 + 3007361
    4 ...romedia.Flash Player.plugin 0x1e570720 FlashPlayer10_0_42_34FlashPlayer + 289856
    5 ...romedia.Flash Player.plugin 0x1e51b8ff 0x1e23d000 + 3008767
    6 libSystem.B.dylib 0x95a60a19 pthreadstart + 345
    7 libSystem.B.dylib 0x95a6089e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000036 ebx: 0x1e2ced31 ecx: 0x186ad2ec edx: 0x31d1c000
    edi: 0x70747468 esi: 0x186ad2d0 ebp: 0xbfffdb08 esp: 0xbfffdad0
    ss: 0x0000001f efl: 0x00010202 eip: 0x1e2ced90 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x70747468
    Binary Images:
    0x1000 - 0x1b5fe7 com.apple.Safari 4.0.5 (6531.22.7) <179BBADD-7C49-EF3C-BD19-E988CCD9AE10> /Applications/Safari.app/Contents/MacOS/Safari
    0x7b0000 - 0x7b1ff7 ATSHI.dylib ??? (???) <B370C4CD-44F6-1241-EC63-F8F02A96275B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x17cf2000 - 0x17cf2ff7 com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <C2C8B385-DB44-1D5E-5221-9ED1BA43930B> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x17cf7000 - 0x17cf7ff7 +com.yazsoft.SDEnhancer ??? (1.0) <D097E8D7-9F63-5D52-63BD-BEF66008B060> /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin/Contents/Resources/SpeedDownloadEnhancer.bundle/Contents/MacOS/Sp eedDownloadEnhancer
    0x17f00000 - 0x17f07ff7 com.apple.JavaVM 13.1.0 (13.1.0) <2842C4EE-869D-81E6-E771-062F583A1044> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x17f10000 - 0x17f15ff7 +com.yazsoft.browserplugin 2.1.0 (2.1.0) <A1E51B8B-864B-3FA5-3B75-103C417C23A0> /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin/Contents/MacOS/SpeedDownload Browser Plugin
    0x17f1a000 - 0x17f1eff7 +com.yazsoft.SDSFBundle ??? (1.0) <E6F89E95-F517-DCC0-822D-32531F4083C3> /Library/Internet Plug-Ins/SpeedDownload Browser Plugin.plugin/Contents/Resources/SpeedDownloadEnhancer.bundle/Contents/Resource s/SDSFBundle.bundle/Contents/MacOS/SDSFBundle
    0x18459000 - 0x185ccfe7 GLEngine ??? (???) <F0181B85-962E-508D-4912-056D87F8E96E> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1879e000 - 0x187c1fe7 GLRendererFloat ??? (???) <65E1E174-28E0-3FA9-E391-504891B69818> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1890c000 - 0x18d10fe7 libclh.dylib 3.1.1 C (3.1.1) <FBDA4CAC-EBB3-2129-7EE3-E8E9381974C9> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x18e90000 - 0x18e93ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x193c0000 - 0x193e9fe3 com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x1994a000 - 0x19958fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x19b80000 - 0x19b84ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x19b9d000 - 0x19bafff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <C4E0D62B-4D1A-8DAD-D10B-2C055AA0479C> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1a111000 - 0x1a117ffb com.apple.audio.AppleHDAHALPlugIn 1.8.4 (1.8.4fc3) <89AF8F46-15E4-2066-BDDB-05E92C1368D4> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1bb57000 - 0x1bbacfdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1dc2a000 - 0x1dcdffe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x1e23d000 - 0x1e877ffb +com.macromedia.Flash Player.plugin 10.0.42 (1.0.4f348472) <266780DB-53C4-AAC8-30AF-F69306C5C030> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x343cf000 - 0x344defeb libmecab.1.0.0.dylib 2.0.0 (compatibility 2.0.0) <CBCAB9D0-A82E-9445-C3A6-B3A51E48E586> /usr/lib/libmecab.1.0.0.dylib
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <AEC44B68-A209-4093-36B0-7B740361249B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f12c000 - 0x8f7b4fff com.apple.GeForceGLDriver 1.6.10 (6.1.0) <EFC80A22-4F62-3DFC-A391-738B2A8A4E56> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x90003000 - 0x9000eff7 libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x9000f000 - 0x9005fff7 com.apple.framework.familycontrols 2.0.1 (2010) <50E74916-19A5-F2FC-AB57-76F2C8DDF0A7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90060000 - 0x9018cfff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9018d000 - 0x901c3fff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x901c4000 - 0x901c5ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x902ad000 - 0x902f1fe7 com.apple.Metadata 10.6.3 (507.8) <53BB360A-1813-170D-827F-C1863EF15537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90327000 - 0x9045eff7 com.apple.CoreAUC 6.04.00 (6.04.00) <0551FB8D-0894-B40B-B924-4AF51E3648AF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9045f000 - 0x90553ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <9EC28185-D26F-533F-90C4-FBAA13A15947> /usr/lib/libiconv.2.dylib
    0x90554000 - 0x90591ff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <830FED9E-3E24-004C-35D5-2C1273F79734> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x90592000 - 0x905b3fe7 com.apple.opencl 12.1 (12.1) <1BCA4F60-E612-5C1B-EF50-A810D70CDF05> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x905b4000 - 0x905bfff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <F914F427-98EA-98BC-923D-47274A90D441> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x905c0000 - 0x905deff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x905df000 - 0x9067aff7 com.apple.ApplicationServices.ATS 4.1 (???) <22FCDB9B-B588-D602-3991-26A2E3C51E6E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90686000 - 0x909a2fe7 com.apple.RawCamera.bundle 2.3.2 (516) <9C1C6ED1-C392-6779-0D34-47E62EAF93BA> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x909c5000 - 0x90ddbff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90ddc000 - 0x90e10ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <5FEC74CA-1D3C-B6E3-E046-3970095C44BC> /usr/lib/libssl.0.9.8.dylib
    0x90e2a000 - 0x90e4eff7 libJPEG.dylib ??? (???) <EDA86712-F49C-760C-BE55-9B899A4A5D1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x90e4f000 - 0x90f19fef com.apple.CoreServices.OSServices 357 (357) <764872C3-AE30-7F54-494D-4BA3CE4F4DFB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f1a000 - 0x90fb2fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91022000 - 0x91023ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x91024000 - 0x91032fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x91033000 - 0x91076ff7 libGLU.dylib ??? (???) <CE02968E-930D-E63B-7B21-B87205F8B19A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x910c3000 - 0x9113dfef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91191000 - 0x911a6fff 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
    0x914b0000 - 0x9155eff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x916a2000 - 0x916b6ffb 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
    0x916b7000 - 0x916b7ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x916b8000 - 0x91727ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91728000 - 0x9190afff com.apple.imageKit 2.0.3 (1.0) <56AE34CD-4406-8AA2-DDBF-DBF902BD0E0A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x9190b000 - 0x91943ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91944000 - 0x91982ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x91983000 - 0x919befeb libFontRegistry.dylib ??? (???) <F50A60E1-3757-D007-A20D-A5504C17334C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x919cf000 - 0x91a2aff7 com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x91a2b000 - 0x91a3bff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x91a3c000 - 0x91a6cff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x91a7b000 - 0x91a81ff7 libCGXCoreImage.A.dylib 543.33.0 (compatibility 64.0.0) <DD359830-97D4-0CD4-8666-DFE450E8D633> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x91a82000 - 0x91a93ff7 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
    0x91a9b000 - 0x91abdfef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91abe000 - 0x91b2cff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x91b2d000 - 0x91bddff3 com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91bde000 - 0x91be4fff 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
    0x91be5000 - 0x91c24ff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <A03C5D7E-54CD-D56D-E120-9B35EBC9D8F1> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x91c25000 - 0x91c58ff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91c59000 - 0x91c91fe7 libcurl.4.dylib 6.1.0 (compatibility 6.0.0) <9029FA55-4F07-28B9-C1B4-06AD70D8DC8A> /usr/lib/libcurl.4.dylib
    0x91c92000 - 0x92481537 com.apple.CoreGraphics 1.543.33 (???) <C57E2964-80AF-6346-6D3E-23AED9D26977> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x92482000 - 0x924c3fe7 com.apple.MediaKit 10.2 (482) <C795AEBE-DCA8-1680-0100-C540FBC85B15> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x924c4000 - 0x924c7ffb 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
    0x924c8000 - 0x92539ff7 com.apple.AppleVAFramework 4.8.11 (4.8.11) <BDDDFA36-4B53-4B57-B3D4-427DA8226A80> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9253a000 - 0x9253aff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9253b000 - 0x9285bfeb com.apple.CoreServices.CarbonCore 861.6 (861.6) <D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9285c000 - 0x92865ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x92866000 - 0x937b7fe7 com.apple.QuickTimeComponents.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x937b8000 - 0x9382fff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93830000 - 0x9387dfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9387e000 - 0x9394ffe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <0A608513-31AD-D533-8386-10245FD62057> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x93b16000 - 0x93b2eff7 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
    0x93b2f000 - 0x93bc1fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93bc2000 - 0x93c08ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x93cb1000 - 0x93cb5ff7 libGIF.dylib ??? (???) <03880BA1-7A86-0F2B-617A-C66B1D05DD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x93cb6000 - 0x93cb6ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x93cb7000 - 0x93ce1ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x93ce2000 - 0x93d09ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93d7e000 - 0x93dfefeb 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
    0x93e07000 - 0x93eb4fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x93eb5000 - 0x93edbfff 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
    0x93edc000 - 0x93fb7fe7 com.apple.DesktopServices 1.5.5 (1.5.5) <ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x93fb8000 - 0x943edff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x94472000 - 0x94492fe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <03019DD7-993D-AC88-6636-179F92F315C4> /usr/lib/libresolv.9.dylib
    0x94493000 - 0x9449aff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9449b000 - 0x9459dfef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x9459e000 - 0x9460cff7 com.apple.ISSupport 1.9.3 (51) <9BB37FBA-E379-8D12-11C6-B9C5C9683D27> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9460d000 - 0x9473bfe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9473c000 - 0x94757ff7 libPng.dylib ??? (???) <929FE8EE-277D-F6EB-D672-E6F4CEBF1504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x94758000 - 0x949c8ffb com.apple.Foundation 6.6.2 (751.21) <DA7A173A-4435-ECD6-F4AF-977D722FD2F7> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x949c9000 - 0x94a09ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94a0a000 - 0x94a0fff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94a12000 - 0x94a15fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x94a16000 - 0x94af3ff7 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
    0x94af4000 - 0x94b9cffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94bbe000 - 0x9507bffb com.apple.VideoToolbox 0.484.5 (484.5) <DA9B4FA8-B91C-43AC-1D84-0BFF46BB5BCE> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x95081000 - 0x9508bfe7 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
    0x9508c000 - 0x9522afeb com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9522b000 - 0x953abfeb com.apple.MediaToolbox 0.484.5 (484.5) <6996E5E1-18B6-C734-8335-FE43670C1F9C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x953ac000 - 0x953fdff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9545f000 - 0x955a1fe3 com.apple.QTKit 7.6.6 (1729) <1EC021FB-AB8F-F8BF-0434-78C0A7B78EB2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x955a2000 - 0x955acff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9565c000 - 0x95684ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x95704000 - 0x9577dff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9577e000 - 0x957bfff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <C6E50C7E-EBEE-32AF-FF07-8E325E21A838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x957c0000 - 0x95818fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9585a000 - 0x9593eff7 com.apple.WebKit 6531.22 (6531.22.7) <87C81D6F-77B1-C517-93E6-5DEF214326A7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9593f000 - 0x959a9fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x959aa000 - 0x959f3fe7 libTIFF.dylib ??? (???) <E45B169E-253E-E865-1501-97777D2702F2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x959f4000 - 0x959feffb 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
    0x959ff000 - 0x95a03ff7 IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95a04000 - 0x95a04ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x95a32000 - 0x95bd7feb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x95bd8000 - 0x95c3cffb 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
    0x95c3d000 - 0x95e43feb com.apple.AddressBook.framework 5.0.1 (868) <2CCD7801-F3B8-CED3-D5D7-096AF8DC004D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x95ffc000 - 0x9603aff7 com.apple.CoreMedia 0.484.5 (484.5) <35725D22-4549-5568-8E8C-62E0AD0E90F7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96045000 - 0x96201ff3 com.apple.ImageIO.framework 3.0.2 (3.0.1) <CB39B067-58B8-70DB-3E40-160604664A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9620d000 - 0x96229fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9622a000 - 0x9622aff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96291000 - 0x9633aff7 com.apple.CFNetwork 454.9.4 (454.9.4) <2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9633b000 - 0x9633dff7 libRadiance.dylib ??? (???) <9358E1EF-F802-B76E-8E23-2D0695787CFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x963b1000 - 0x966d5fef com.apple.HIToolbox 1.6.2 (???) <F5F99E78-5377-DD54-6138-9FC84467F938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x966d6000 - 0x96758ffb SecurityFoundation 36840.0.0 (compatibility 1.0.0) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x96759000 - 0x96984ff3 com.apple.QuartzComposer 4.1 (156.13) <FE0BF06B-8D32-C712-7CCD-63D8918B8B6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x96985000 - 0x96a8bff3 com.apple.DiskImagesFramework 10.6.3 (283) <25E58865-CC3A-8707-1C4C-F86ED1514A09> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x96a8c000 - 0x96acfff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x96ad0000 - 0x96ad4ff7 libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x96ad5000 - 0x96c4effb com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x96c4f000 - 0x96c91ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x96c92000 - 0x96c9eff7 libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x96c9f000 - 0x96d58fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x96d59000 - 0x96d59ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96e0f000 - 0x96e23fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x96e24000 - 0x96ed4fe3 com.apple.QuickTimeImporters.component 7.6.6 (1729) <6C2372BA-69D9-E713-902F-95E16FD18EFD> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x96ed5000 - 0x96ed7ff7 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
    0x96ed8000 - 0x96eeaff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <6BB58E90-21FA-C491-F0E4-54B69CCDBBC0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x96eeb000 - 0x96ef9ff7 com.apple.opengl 1.6.7 (1.6.7) <3C529790-DEE9-AC27-A879-806E4C23323C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96efa000 - 0x96f01ff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x96f02000 - 0x96f58ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x96f59000 - 0x96fb3fe7 com.apple.CorePDF 1.1 (1.1) <E4608FF6-A27D-7DFC-5620-D86762502AC0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x96fb4000 - 0x970c0ff7 libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x970c1000 - 0x9719cff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9719d000 - 0x9729efe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9729f000 - 0x97598fef com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97599000 - 0x97e78ff7 com.apple.AppKit 6.6.5 (1038.29) <E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x97f23000 - 0x97f2eff7 com.apple.CrashReporterSupport 10.6.3 (250) <E2835962-67A2-CA10-4016-467175851348> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97f2f000 - 0x97f64ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <458E819A-4E3F-333E-28CE-671281B318D3> /usr/lib/libcups.2.dylib
    0x97f65000 - 0x97f65ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x97f66000 - 0x9807cff7 com.apple.PubSub 1.0.4 (65.12.1) <1B79C698-A2A1-6B74-A137-67516ABE088E> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9807d000 - 0x98083ff7 com.apple.DisplayServicesFW 2.2.2 (251) <D8BB3A1F-29C7-A957-C781-794CC9550525> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x98084000 - 0x980e5fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x98164000 - 0x983c6ff3 com.apple.security 6.1.1 (37594) <1AC07F75-7E27-9662-21DA-B05DFF047B26> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x983c7000 - 0x983c8ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x983c9000 - 0x9840dff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9840f000 - 0x98440ff3 libTrueTypeScaler.dylib ??? (???) <4C189FCA-A210-7255-8F70-38DF9D19F877> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98441000 - 0x987a8ff7 com.apple.QuartzCore 1.6.1 (227.18) <8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x987a9000 - 0x987acff7 libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x987ad000 - 0x987adff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x987ae000 - 0x987dfff7 libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x987eb000 - 0x988a1fef libFontParser.dylib ??? (???) <FA6B6B8B-1E3C-8EEB-DD0D-6C7482353179> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x988a2000 - 0x98a7dff3 libType1Scaler.dylib ??? (???) <13019E13-3A15-928F-3F13-B79BACB0FD13> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x98a7e000 - 0x98a8bfe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x98a8c000 - 0x98b7eff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7482933B-4AF6-ED55-AD72-4FBD1E134958> /usr/lib/libcrypto.0.9.8.dylib
    0x98b7f000 - 0x98bc5ffb com.apple.CoreMediaIOServices 130.0 (1035) <397101F4-BA80-C8C2-F816-E2FBE5E15D4F> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x98be6000 - 0x98be9ff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <69BE578C-A364-A150-35E3-53EE00F56F05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98bea000 - 0x98bfaff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x98c19000 - 0x98d9bfe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x98d9c000 - 0x98e39fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x98e3a000 - 0x98e4aff3 SyndicationUI ??? (???) <180B4587-8F46-2B89-B009-ABBA82397C2F> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x98e4b000 - 0x98e4bff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x98e4c000 - 0x98e59ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x98e5a000 - 0x9968dfe7 com.apple.WebCore 6531.22 (6531.22.7) <952A0D34-63F5-F7F7-D6E5-D0AD78002F89> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <A23F9980-5CC8-A44D-6FD6-DBFCBFF4FF28> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib

  • After downloading 24.5.0 I get frequent "stalling" and hanging of Thunderbird, on two separate computers with McAfee

    While reading mail that has already downloaded, Thunderbird seems to stall when selecting a new message, and I get a message from Windows at the top of the screen telling me that Thunderbird is not responding. If I wait a couple minutes this clears up and I can click on the next message. I can work normally for a while, then it will hang a few times, then it clears up for a while. Windows 7, 64-bit. Happens on two different computers with different apps running, different anti-virus packages, probably not all the settings are identical.

    First, thanks for offering to help.
    Anti-Virus Related Issues
    1. McAfee AntiVirus Plus doesn't create an extension called McAfee Anti-Spam Thunderbird Extension in Tools | Addons | Extensions as noted in the web article. Nothing there. It does create two other plugins in Tools | Addons | Plugins. One is called McAfee Security Center and the other is called McAfee Virtual Technician. Disabling either had no impact upon mail performance. Yes, I closed the application and restarted it after turning the plugins off to be sure that they weren't still running.
    2. Disabling attachment scanning didn't seem to have any impact, but I may have to wait until I get some significant attachments to tell for sure on that.
    Routine Sysadmin Chores:
    1. Yes, using POP. One computer does not remove mail from the server, the other does, daily. There is no significant build up of old mail on the server. Also, nothing changed in this regard from before installing 24.5.0.
    2. I do archive mail, but mostly I clean out the folders. There is not a big accumulation of email in folders, particularly on the machine running McAfee. Regardless, this hasn't changed since I installed 24.5.0.
    3. I empty junk and spam folders several times a day on whichever computer is being used, and compact regularly. There is no build up in those folders.
    On the bright side, both systems seem to be doing better with mail this morning, before doing anything at all to try and fix the problem. I am going to let this sit for a few days and see how it performs.

  • Mac stalls and runs slow in basement

    Our iMac worked fine in the kitchen when it was plugged into the modem. We remodeled and put the iMac in the basement as a wireless. It runs really slow (takes 5-10 minutes to get to site) and stalls. I bought an Airport Extreme and an Airport Express thinking that would take care of the problem...it didn't. What can I do?

    As seventy one says, an ethernet connection may be best.  If running an ethernet cable from the router to the basement is not easy, you can look at using PowerLine ethernet adaptors, that will use your homes electrical wiring to route the ethernet signals from the router to the basement.
    You could try moving your WiFi router to a location which is closer to the basement location for the iMac, even as an experiment to see if that improves WiFi reception.
    I assume the Airport Express was being used as a WiFi extender.  Choose a location for the Airport Express that is half way between the Airport Extreme and the iMac, so that the Airport Express has a better chance of getting strong signal, and then retransmitting a strong signal to the iMac.  Experiment with different Airport Express locations both on the same floor as the Airport Extreme and in the basement.

  • Stall and "slew request timed out"

    Hello,
    Yesterday my PowerMac G5 stalled for the second time, the GUI was unresponsive but i was able to log into the machine over SSH.
    The only activity i saw was that the following was constantly logged:
    "PowerMac112SlewCtrlLoop::setVoltageSlewIndex - slew request timed out"
    I tried to make the machine go to sleep from the command line, but it failed, only a reboot got everything working again.
    So, does anyone know if what could be the problem? Are the stall and the logged message related? If not why do i get that message, my friend has a indentical G5 and he does not get that message.
    Regards
    Henrik

    I think i'm closer to figuring it out.
    Apr 27 06:57:02 quad kernel[0]: PowerMac112SlewCtrlLoop::setVoltageSlewIndex - slew request timed out
    I can be using the computer for weeks and not have the bug appear at all.
    Yesterday I Installed GeekTool which allowed me to have the System.log run in the background as a the Desktop Picture. I noticed that when I plugged my earbuds into the front panel board, the machine started having "slew request timed out" issues.
    I shut down the machine, restarted, used it for a day, then plugged the earbuds, and boom, issue reproduced. It is now very consistent.
    I can Reproduce it consistently by pluggin in the earbuds. (I've tried 2 pairs)
    Is this a Hardware or Software Bug?
    Also I'm posting here a list of my recent Kernel Panics.
    Mon Jan 23 23:18:02 2006
    panic(cpu 1 caller 0x000E83F4): vnode_put(4245948): iocount < 1
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000E83F4 0x000E83A0 0x000F116C 0x002AA304 0x000ABEB0
    0x1414181F
    Proceeding back via exception chain:
    Exception state (sv=0x514D4280)
    PC=0x90027ECC; MSR=0x0000D030; DAR=0xE161D000; DSISR=0x42000000; LR=0x90B457C8; R1=0xBFFFB7A0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.4.0: Tue Jan 3 18:22:10 PST 2006; root:xnu-792.6.56.obj~1/RELEASE_PPC
    Sat Mar 11 12:15:46 2006
    panic(cpu 1 caller 0x000E83F4): vnode_put(4fa1210): iocount < 1
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000E83F4 0x000E83A0 0x0010D738 0x0010D974 0x0010DB98
    0x000FB540 0x000E24C8 0x000E205C 0x000D3EA0 0x002AA2E4 0x000ABEB0 0x9C1969DA
    Proceeding back via exception chain:
    Exception state (sv=0x5F115000)
    PC=0x9001C220; MSR=0x0200F030; DAR=0xE60E4000; DSISR=0x42000000; LR=0x90B15D34; R1=0xF00FBCA0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.5.0: Sun Jan 22 10:38:46 PST 2006; root:xnu-792.6.61.obj~1/RELEASE_PPC
    Tue Apr 4 21:03:44 2006
    panic(cpu 3 caller 0x0021B90C): btreejournal_modify_blockend: about to write corrupt node!
    Latest stack backtrace for cpu 3:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x0021B90C 0x0021BAB4 0x00242050 0x002407EC 0x0021E18C
    0x0023BCFC 0x00221604 0x000FDAF4 0x000E84B4 0x000E83FC 0x000F5FA0 0x0025EF70 0x0025F174
    0x0025D26C 0x0025CFCC 0x002AABD4 0x000ABEB0 0x5245463D
    Proceeding back via exception chain:
    Exception state (sv=0x61E03780)
    PC=0x9001494C; MSR=0x0200D030; DAR=0x15D14FFC; DSISR=0x0A000000; LR=0x90BA9340; R1=0xF0516400; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.6.0: Tue Mar 7 16:58:48 PST 2006; root:xnu-792.6.70.obj~1/RELEASE_PPC
    Fri Apr 14 15:31:07 2006
    panic(cpu 1 caller 0x000E8450): vnode_put(782118c): iocount < 1
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x000E8450 0x000E83FC 0x0010DA28 0x0010DC64 0x0010DE88
    0x000FB5AC 0x000E2524 0x000E20B8 0x000D3EA0 0x002AABD4 0x000ABEB0 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x615CE780)
    PC=0x9001C5A0; MSR=0x0000F030; DAR=0xE1426000; DSISR=0x42000000; LR=0x90B9BD34; R1=0xF01FDC50; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.6.0: Tue Mar 7 16:58:48 PST 2006; root:xnu-792.6.70.obj~1/RELEASE_PPC
    Mon Apr 24 21:09:14 2006
    panic(cpu 1 caller 0x000E8450): vnode_put(77ab294): iocount < 1
    Latest stack backtrace for cpu 1:
    Backtrace:
    0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x63CE2C80)
    PC=0x9002858C; MSR=0x0200F030; DAR=0xEFFFBB20; DSISR=0x00200000; LR=0x90BCB7C8; R1=0xBFFFB7A0; XCP=0x00000030 (0xC00 - System call)
    Kernel version:
    Darwin Kernel Version 8.6.0: Tue Mar 7 16:58:48 PST 2006; root:xnu-792.6.70.obj~1/RELEASE_PPC
    Tue Apr 25 20:09:19 2006
    panic(cpu 0 caller 0x0028CE48): freeing free mbuf
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x00095718 0x00095C30 0x0002683C 0x0028CE48 0x00507240 0x00521D80 0x00521F40 0x0051D150
    0x002D0940 0x002CF808 0x000A9894
    Kernel loadable modules in backtrace (with dependencies):
    com.apple.iokit.AppleBCM5701Ethernet(2.1.0d21)@0x51b000
    dependency: com.apple.iokit.IONetworkingFamily(1.5.0)@0x4fc000
    dependency: com.apple.iokit.IOPCIFamily(1.7)@0x47c000
    com.apple.iokit.IONetworkingFamily(1.5.0)@0x4fc000
    Proceeding back via exception chain:
    Exception state (sv=0x568F4780)
    PC=0x00000000; MSR=0x0000D030; DAR=0x00000000; DSISR=0x00000000; LR=0x00000000; R1=0x00000000; XCP=0x00000000 (Unknown)
    Kernel version:
    Darwin Kernel Version 8.6.0: Tue Mar 7 16:58:48 PST 2006; root:xnu-792.6.70.obj~1/RELEASE_PPC
    PowerMac G5 Quad   Mac OS X (10.4.6)   6 Gigs of Ram.

  • How can i get rid of recovered message in my mac?

    after I send an e mail with photos attached, this folder 'on my mac' is on my mail and says recovered message, can't delete.
    it keeps popping up.
    Cannot received mail.
    I am new to mac I don't know what to do
    D.

    I have had the same problem. Probably you have Gmail. When you compose a message Gmail automatically saves a draft every half minute or so to its servers. The problem is with a large email with photos is that it takes a long time. Every time it wants to upload a draft to Gmail, it will remember that. So if you spend like 10 minutes composing your photos message in Mail, Gmail will want to upload the message around 20 times to its servers.
    The folder will keep popping up until it has done ALL of the uploading it intended to do. Only after that, you will be able to remove it.
    The only way to prevent this misery in the future is to go to Mail preferences > Accounts > select your Gmail account > go to Mailbox behaviors > deselect the "Store draft messages on the server" checkmark.
    It's unfortunate that Gmail doesn't give an option to switch off the autosave behavior.
    Hope this helps.

  • Iphone4 having problems syncing music after the latest update.  only half of my music has been synced. during the syncing process the system stalls and i get an error stating itunes cannot locate the file.

    My IPhone 4 is experiencing an issue since the latest update.  Itunes will not allow the library to sync my entire library. Itunes get stalled and the error message reads ITunes can't find the file for a certain song.  

    I had the same issue and was told it was because I was using Windows XP.  Not sure if the same issue or not, but check that first.

  • When opening a pdf link the process stalls and there is a message that Adobe acrobat reader is running. to the best of my knowledge I do not have the reader. I have an older version of Acrobat Pro. How can I fix this?

    when opening a pdf link on a web poage the process stalls and there is a message that Adobe acrobat reader is running. To the best of my knowledge I do not have the Acrobat reader. To the best of my knowledge I have deleted the reader program. I have an older version of Acrobat Pro. The problem occurred before I did the deletion and continues since then.

    Assuming that you are using IE10 / IE11 on Windows: http://support.microsoft.com/kb/2716529

  • Snow Leopard, Mail and Recovered message

    I just installed Snow Leopard and every time I open Mail, it "Recovers" some message 2 or 3 times, I never had this problems before, it began the next hour after installed SL.
    Any idea please,
    Thank you

    Hi Ernie,
    I run a private IMAP server I run on my home LAN - primarily for moving email between my Windows Live (Hotmail) mail folders, and Mac Mail. I use a PC to copy email from Hotmail to the IMAP server, and then the Mac to retrieve those messages (I'm also fairly new to Mac - well, the last time I used it in anger it was System 7!).
    The private IMAP server is normally reliable, but occasionally a largeish file appears to fail to transfer from Mac to IMAP folder (never from PC to IMAP folder) - it then becomes 'stuck', not appearing in either the POP3 inbox, or the destination folder.
    But - and this is the worrying part - Mail whirs away and 'recovers' the stuck email into a 'Recovered Messages' folder. A minute later it whirs some more and creates another copy of the SAME email in the same folder. A minute later and another copy is created.
    This carries on - I've left it alone, restarted Mail, restarted the Mac, but each time it creates a new copy of the stuck email. I've seen 20 copies of the same email created. If left unchecked I could imagine it filling
    I've tried moving the email out of the folder back into the POP3 inbox, into another IMAP folder, just deleting the messages and emtying the Mail trash - but each time Mail whirs away and carries on creating recovered copies of the same email.
    The only way I have found to stop this from happening is to remove the account, restart Mail and then re-add the account for the IMAP server. It then downloads all the messages again and the problem is gone.
    Is there just a way to remove the 'stuck' message, or tell Mail to ignore the recovered message so it doesn't create multiple copies?
    Cheers, Richard

  • Laptop (Running Windows 8.1) no longer able to print and now see message Active Directory Domain Services is not available

    Have a very recent Lenovo Ideapad Laptop running Windows 8.1. Connected via USB port to HP LaserJet Pro CM1415 frw Color MFP Printer. Was able to print fine nearly 2 weeks ago, but something recently happened - either a new windows or office 2013 update
    or perhaps I blew away a certain file by mistake. I can see the printer installed but cannot print to it from anything (Word, Notepad, IE, Firefox etc.). The one thing to note is that usually when I plug or unplug a USB related device, Windows 8.1 recognizes
    this and makes a certain chime noise, but with the printer USB cable it never makes that noise - making me think that it never fully recognizes the printer. Also when I select the printer (from within the control panel) and right click for properties (via
    admin rights) It never lets me fully connect to it.
    I have tried all the usual remedies - remove, install all drivers, reinstall printer, Windows update, start/stop print spooler and all other printer related services,  etc. Its really annoying because this printer was working fine nearly 2
    weeks ago. Looking for any advice now. Thanks.
    -Chris

    Hi Chris,
    à
    I have tried all the usual remedies - remove, install all drivers, reinstall printer, Windows update, start/stop print spooler and all other printer related services, etc.
    I noticed that you had reinstalled the printer. Just a confirmation, when un-install this printer, please check
    if this printer still exist in registry. For more details, please refer to following KB.
    Registry entries for printing
    If printer entry still exist in registry, please delete that printer entry and re-install this printer again,
    then check if this issue still exists. (Please backup registry entries before operating registry. It will help us to avoid unexpected issue.)
    àand now see
    message Active Directory Domain Services is not available
    By the way, would you please let me know where/when get this
    Active Directory Domain Services is not available error message? Or provide a screenshot of it?
    (Please hide all protected or private information) Please check if all services are running correctly on the computer. Meanwhile, please refer to following article and check if can help you.
    Printer
    Problem: Active Directory Domain Services is currently unavailable – Why does windows say no printers are installed?
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft
    does not guarantee the accuracy of this information.
    If any update, please feel free to let me know.
    Hope this helps.
    Best regards,
    Justin Gu

  • How can I stop from getting the "Firefox is already running" error message when trying to open links and FF has already been opened through a symbolic link?

    I use symbolic links and program shortcuts as a way to easily open different Firefox profiles ie. one for casual/personal use and another for work. This works well, but I get the "Firefox is already running, but is not responding" error message if I try to open external links with FF as my default browser. FF is actually open and running fine, but I guess it doesn't acknowledge this fact because of how I'm originally starting the process.
    I wasn't able to add the symbolically linked executables to the default program pane. Is there a way to bypass this error or other way to fix this?
    The solution to the question linked below is what I'm using to open the different FF profiles.
    http://superuser.com/questions/255312/pin-same-app-multiple-times-in-windows-7

    hello, this is probably happening when you run the default profile with the -no-remote switch.
    http://kb.mozillazine.org/Profile_in_use

  • Fire fox will not open and give the message that program is already running when it is not and i have to restart my computer. i am running windows xp and this problem started after the last up date. i have tried uninstalling and reinstalling the program

    is this a known issue?

    If you close Firefox properly the problem will practically disappear.
    To close Firefox properly:
    :<b>Closing Firefox</b> ''(#close_firefox)'', avoid getting <b>Firefox already running</b> messages:&nbsp; To properly shutdown Firefox when multiple windows or closing the
    last window use File → Exit/Quit (or Firefox button → Exit).&nbsp; Closing Firefox with the [X] in the upper right corner closes the window ("Ctrl+W") but that does not necessarily close Firefox if it has subtasks running.&nbsp; If you want to close and reopen Firefox use the "Restart" within Add-ons if you made a change requiring a restart, or install "[https://addons.mozilla.org/en-US/firefox/addon/restartless-restart/ Restartless Restart]" ("Ctrl+Alt+R") which will allow you to take Firefox down and restart without having to check the Windows Task Manager to see if Firefox first actually ended. ([http://kb.mozillazine.org/Firefox_hangs Firefox hangs])
    In checking the Windows Task Manager be sure to check the "Process" tab not the "Application"tab/

  • Vanishing message lists, stalls, and a whole mess of trouble!

    Out of all my apps, MAIL was the most reliable & stable of the lot.
    Then two days ago, it began behaving el'stupido! This is going to be somewhat thorough, so please bear with me:
    1 ''Get Mail'' was taking forever to complete its first retrieval. So a force quit was necessary. Reopened MAIL, and still the retrieval seemed to stall about halfway through (15 of 35 retrieved from server). Checked with my webserver and none of the emails had attachments or anything like that.
    2 Messages in my Inbox and other folders had vanished. Tried ''Rebuilding'' to no avail. My Inbox reads (at the top of the MAIL window) ''0 messages, 4 unread''. I know there are about seven ''read messages'' in my Inbox. I go to my Finder~User~Library~Mail~ and all the messages are there. Opening each message file from the Finder is no problem.
    3 Used JunkMatcher to sort my HAM from SPAM prior to this weirdness and it did its job well. I thought this might've caused the screw-up. So I trashed it. Still no change in MAIL's behavior.
    4 Searched other forums and came across a partial solution: trashing the Font Cache's & Mail Cache's contents; restarting; and it seemed to be working. Some folders needed ''Rebuilding'', then ...
    5 ... I switch to another app, return to MAIL and choose another mailbox and it reads ''0 messages''. Check other mailboxes and ''0 messages''. Here we go again!
    The total contents of the Mail folder is less than 190Mb. I have a copy of Entourage sitting on my shelf as a "MAIL, why have you forsaken me!" back-up solution. I want to remain Microsoft-free, but if I can't find a solution soon (without reinstalling Tiger) I may have to sign on with the devil!
    Have a marvy day!
    iMac 1GHz   Mac OS X (10.4.3)  

    Not resolved really ... did a clean install. That fixed it...

  • FF won't open and an error message appears on the screen "unresponsive script" it I open task manager and stop the error message FF runs normally, how do I fix this problem

    This problem only started when I upgraded to FF 4.0. I am running Windows 7. When I go to the task manager I am able to see the error message in the processes area, if I highlight it and tell the task manager to stop it, FF immediately starts and runs normally. I have no idea where the error message is coming from.

    This problem only started when I upgraded to FF 4.0. I am running Windows 7. When I go to the task manager I am able to see the error message in the processes area, if I highlight it and tell the task manager to stop it, FF immediately starts and runs normally. I have no idea where the error message is coming from.

Maybe you are looking for

  • Create return with reference to original sales order - pricing

    Hi I am using the function SD_SALESDOCUMENT_CREATE to create a return order with reference to the original sales order. All the information from the original sales order (including pricing conditions) I've read with the function BAPISDORDER_GETDETAIL

  • How to find a string from a set of records?

    I am having a stored procedure which is used for creating a crystal report. When I run the stored procedure sometimes it gives more than one row of data. I want to check if a particular string exists in any row of a particular column. To make it clea

  • Better training for BT help staff

    Recently I needed to 'phone the BT help because our Broadband had failed. We have four devices connected to the router and all could see the router but none could connect to the Internet. I used the testing function on the router and found that the r

  • Removing Skype name from sign in screen

    Hi I'm selling my PC (windows XP pro) and have deleted Skype (using add/remove programs) then reinstalled it. My user name keeps coming up as an option, without the PW, how do i delete this from my PC so my username does not come up any more? Solved!

  • Error while installing oracle9.2  on linux84 - file format not recongnised

    Trying to install oracle 9.2.0.4 on linux84 box and getting error while triggering make file : ins_sqlplus.mk. Error is with object file : safiimfg.o file format not recognised. What i am missing here ?