Concurrent mode failure- low memory -- OutOfMemory Exception

WebLogic Web-tier instance frequently causing low memory. Where GC logs shows
Total time for which application threads were stopped: 0.7241688 seconds
46903.931: [GC [1 CMS-initial-mark: 375909K(524288K)] 441597K(983040K), 0.1330196 secs]
Total time for which application threads were stopped: 0.2807213 seconds
46904.064: [CMS-concurrent-mark-start]
46907.915: [CMS-concurrent-mark: 3.850/3.850 secs]
46907.915: [CMS-concurrent-preclean-start]
46907.952: [CMS-concurrent-preclean: 0.035/0.037 secs]
46907.952: [CMS-concurrent-abortable-preclean-start]
46938.527: [GC {Heap before gc invocations=218:
par new generation total 458752K, used 458752K [0xaf800000, 0xcf800000, 0xcf800000)
eden space 393216K, 100% used [0xaf800000, 0xc7800000, 0xc7800000)
from space 65536K, 100% used [0xc7800000, 0xcb800000, 0xcb800000)
to space 65536K, 0% used [0xcb800000, 0xcb800000, 0xcf800000)
concurrent mark-sweep generation total 524288K, used 375909K [0xcf800000, 0xef800000, 0xef800000)
concurrent-mark-sweep perm gen total 131072K, used 97681K [0xef800000, 0xf7800000, 0xf7800000)
46938.528: [ParNew (promotion failed): 458752K->458752K(458752K), 2.2293867 secs]46940.757: [CMS46941.097: [CMS-concurrent-abortable-preclean: 8.221/33.145 secs]
(concurrent mode failure): 500649K->524287K(524288K), 9.2616939 secs] 834661K->599632K(983040K)Heap after gc invocations=219:
par new generation total 458752K, used 75345K [0xaf800000, 0xcf800000, 0xcf800000)
eden space 393216K, 19% used [0xaf800000, 0xb4194420, 0xc7800000)
from space 65536K, 0% used [0xc7800000, 0xc7800000, 0xcb800000)
to space 65536K, 0% used [0xcb800000, 0xcb800000, 0xcf800000)
concurrent mark-sweep generation total 524288K, used 524287K [0xcf800000, 0xef800000, 0xef800000)
concurrent-mark-sweep perm gen total 131072K, used 96428K [0xef800000, 0xf7800000, 0xf7800000)
, 11.4919889 secs]
For your reference JVM arguments for these instances are as follows:
-Xms1024m -Xmx1024m
-XX:NewSize=512m
-XX:MaxNewSize=512m
-XX:SurvivorRatio=6
-Xnoclassgc -XX:PermSize=128m
-XX:MaxPermSize=128m
-XX:+HeapDumpOnOutOfMemoryError
-XX:+DisableExplicitGC
-XX:+UseConcMarkSweepGC
-verbose:gc -XX:+PrintGCTimeStamps
-XX:+PrintGCDetails
-XX:+PrintGCApplicationStoppedTime
-XX:+PrintHeapAtGC
-Xloggc:gc.log
-XX:MaxPermSize=128m
JDK: Sun JDK 1.5
Operating Environment: Solaris 5.10
WebLogic version 9.2 MP3
Thread dump shows:
"[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'" daemon prio=10 tid=0x009679c0 nid=0x26 waiting for monitor entry [0xa3e7e000..0xa3e7f970]
at weblogic.utils.io.Chunk.<init>(Chunk.java:293)
at weblogic.utils.io.Chunk.getChunk(Chunk.java:141)
at weblogic.utils.io.ChunkedOutputStream.advance(ChunkedOutputStream.java:52)
at weblogic.utils.io.ChunkedOutputStream.write(ChunkedOutputStream.java:65)
at java.io.ObjectOutputStream$BlockDataOutputStream.drain(ObjectOutputStream.java:1685)
We had applied patches as suggested by Oracle WebLogic. But, still issue persists :(
Any help on this issue appriciated.

1) Yes, a System.gc() will be reported by cms as a concurrent mode failure.
2) See if the release you're using has the flag -XX:+ExplicitGCInvokesConcurrent.
This will tell cms to start a concurrent collection when a System.gc() is involved.
It is in jdk6. It may still not do what you want if the the concurrent collections
are happening too frequently.
RMI schedules the full GC's because GC's are local to a JVM and
the collector on one JVM (call it JVM A) does not know about state of the heap
on another JVM (call it JVM B).
3) I would have expected setting the gcInterval to
a larger number would have had more of an affect. What was the value?
Post a fragment of a gc log (-XX:+PrintGCDetails) that shows the concurrent
mode failure. Maybe there's something else going on.

Similar Messages

  • Concurrent Mode Failure

    With -XX:+UseConcMarkSweepGC turned on, I am getting a "Concurrent Mode Failure" when a minor collection that leads to a full GC (due to a full old generation) occurs. The VM runs normally although the full GC was very long.
    Does anyone know what this means? Surprisingly little documentation on this error message. A suggestion was to enable class unloading with CMS, which I did, but the error still comes up.
    Any ideas?

    First of all, thanks for your replies, they have been
    most helpful in our attempt to tune GC activities for
    our uncommon application.We are happy that the forums have been a useful device for
    providing direct help to customers such as yourself.
    During the bursty allocation,
    (1) most objects are promoted very quickly into
    tenured, replacing old objects in the tenured
    (2) a lot of temporary objects that only live for the
    duration of the burst activity are created and
    promoted into tenured
    Obviously the solution to the second is to tune and
    resize the young generation but we have reached a
    limit where the pause times for minor collections are
    acceptable.I am assuming from that that you have tried to tune
    the sizes of Eden, the survivor spaces and tenuring
    thresholds to what you believe are optimal settings
    that reduce premature promotion while still staying
    under your threshold of acceptable pause times.
    Fair enough.
    >
    My point is that the size of old generation
    after bursty allocation should be roughly the
    same as before bursty allocation, given that
    there is little floating garbage after the burst.
    Our problem is that we rely on CMS to happen after
    the burst (when CPU load is low and significantly
    fewer objects are created), and this works using
    vanilla CMS, but not with iCMS. Thus, my question
    about whether iCMS is idle if no minor collections
    occur.Yes, you are right. If the "steady state" iCMS duty cycle
    is lower than 100%, then if allocation rates in Eden
    fall substantially, then iCMS will not necessarily start
    after the scavenge that promoted these objects into
    the tenured generation. On the other hand, vanilla
    CMS would (both those statements modulo the
    understanding that the tenured generation occupancy
    exceeds the appropriate triggering threshold).
    However, it seems to me that it should not matter for
    you that the tenured generation is not immediately
    cleaned up following said promotion activity, because
    presumably there is no pressure from further promotion?
    Ah, OK, I think I understand your problem. You get these bursts
    of activity, and the computed steady state duty cycle is too
    low to be able to effectively deal with such bursty behaviour?
    Are there verbose GC logs (form iCMS certainly, and as well, if possible,
    from CMS) that you might be able to share with us at
    hotspotgc dash feedback at sun dot com? It could be that we may
    be able to tune our adaptive pacing filters to deal effectively
    with such burstiness without your having to pay the price of
    a 100% durty cycle (aka vanilla CMS), to deal with these
    bursty periods while little collection activity is needed during
    the not-so-bursty peiods. (It could well be that we can't, because
    of the time-scale of said burstiness, but it's worth a try.)

  • Concurrent mode failure triggered by a full permanent generation?

    Hello
    I've read various forum posts and blogs on concurrent mode failures and I'm aware why such failures occur (small old gen, promotion guarantee failure, fragmentation) in the old gen and some options (increase heap size/old gen, use CMSInitiatingFraction, explicit System.gc() at quiet hours for compaction, etc.) that may be used to alleviate the problem. In fact, thanks to these forums, I used some of these options to effectively deal with concurrent mode failures on a SPARC system (Solaris 9). However, with my current JVM tuning exercise, the following GC log snippet from a JVM 1.4.2_10 running on HP-UX 11.23 (ia64) leaves me in doubt.
    346179.949: [GC 346179.950: [ParNew: 419022K->27014K(491520K), 0.1540543 secs] 976980K->585383K(1474560K), 0.1542645 secs]
    346444.644: [GC 346444.645: [ParNew: 420230K->420230K(491520K), 0.0000416 secs]346444.645: [CMS (concurrent mode failure)[Unloading class sun.reflect.GeneratedMethodAccessor1107]
    [Unloading class sun.reflect.GeneratedMethodAccessor1087]
    [Unloading class org.springframework.ejb.support.AbstractJmsMessageDrivenBean]
    [Unloading class sun.reflect.GeneratedConstructorAccessor552]
    ...#lots of classes unloaded here#
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor155]
    : 558369K->317371K(983040K), 9.5144462 secs] 978599K->317371K(1474560K), 9.5147394 secs]
    346677.529: [GC 346677.530: [ParNew: 393216K->13960K(491520K), 0.2163942 secs] 710587K->331331K(1474560K), 0.2166204 secs]
    JVM 1.4.2_10 Flags: -Xms1536m -Xmx1536m -Xmn576m -XX:PermSize=512m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -XX:MaxTenuringThreshold=31 -XX:TargetSurvivorRatio=80 -XX:SurvivorRatio=4 -XX:+TraceClassLoading -XX:+TraceClassUnloading -XX:+DisableExplicitGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps -Xverbosegc:file=.....
    Question: When using CMS, perm gen collection is turned off by default and a serial Full GC collects the perm gen. Could this have led to the concurrent mode failure seen above causing classes to be unloaded? i.e. when CMS collector needs to clean up perm gen via a serial STW GC, it generates a concurrent mode failure?
    I doubt the concurrent mode failure could be caused by a full promotion guarantee failure or fragmentation given the available free heap and the fact that this was the first GC in the old generation since server startup.
    Note: We do have a perm gen memory leak caused by spring/CGLIB. While we are fixing the class loading issue, we increased MaxPermSize from 256m to 512m to buy some time. With MaxPermSize=512m and -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled, we had very frequent CMS GCs (every 5 seconds) and I read that this happens because the CMSInitiatingthreshold is the same for both old gen and perm gen. So, we removed -XX:+CMSPermGenSweepingEnabled -XX:+CMSClassUnloadingEnabled and the CMS GCs are no longer frequent.
    Thanks
    Edited by: cybergavin on Dec 28, 2009 12:09 AM

    Hmm..I think I was a bit hasty there...
    [ParNew: 420230K->420230K(491520K), 0.0000416 secs]346444.645: [CMS (concurrent mode failure)[Unloading class........ indicates a parallel scavenge could not be performed most probably due to a "young generation guarantee" failure. Also, HPjmeter revealed no issues with perm gen growth. So, I have decreased the size of the young generation and triggered CMS earlier (changes in bold below):
    *JVM 1.4.2_10 Flags:* -Xms1536m -Xmx1536m *-Xmn512m* -XX:PermSize=512m -XX:MaxPermSize=512m -XX:+UseConcMarkSweepGC -XX:MaxTenuringThreshold=31 -XX:TargetSurvivorRatio=80 -XX:SurvivorRatio=4 -XX:+TraceClassLoading -XX:+TraceClassUnloading -XX:+DisableExplicitGC -XX:+PrintGCDetails -XX:+PrintGCTimeStamps *-XX:CMSInitiatingOccupancyFraction=50 -XX:+UseCMSInitiatingOccupancyOnly* -Xverbosegc:file=.....
    Will post  back on results of the above....                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Concurrent mode failure - CMS & RMI

    Hi,
    I've been struggling with this concurrent mode failures for quite some time and I would be very nice if somebody could answer some more or less basic questions:
    1.) If I scedule a full gc when using CMS do I get an concurrent mode failure? In my log I get one like every 60 seconds even as more than 50% of the heap is free, so I guess it's due to RMI?!
    2.) If 1.) is true, what can I do? I can disable explicit gcs, but will there remain uncollected garbage or will there be any other disadvantage? I mean SUN won't do this ugly FullGC-scheduling-feature for fun, do they?
    3.) If I need explicit gcs (or if I at least suppose it's better to schedule it manually in the night), what can I do in that case? As far as I understood the sun.rmi.dgc.server.gcInterval just set's a maximum interval! Actually I put it to a very high value, but I get the FullGC with a concurrent mode failure every 63 seconds, at memory usage where the CMS should not even kick-in.
    Thanks a lot for any help,
    Robert.

    1) Yes, a System.gc() will be reported by cms as a concurrent mode failure.
    2) See if the release you're using has the flag -XX:+ExplicitGCInvokesConcurrent.
    This will tell cms to start a concurrent collection when a System.gc() is involved.
    It is in jdk6. It may still not do what you want if the the concurrent collections
    are happening too frequently.
    RMI schedules the full GC's because GC's are local to a JVM and
    the collector on one JVM (call it JVM A) does not know about state of the heap
    on another JVM (call it JVM B).
    3) I would have expected setting the gcInterval to
    a larger number would have had more of an affect. What was the value?
    Post a fragment of a gc log (-XX:+PrintGCDetails) that shows the concurrent
    mode failure. Maybe there's something else going on.

  • Permanent Generation GC and concurrent mode failures

    Hello
    I have experienced the following symptoms when a concurrent mode failure occurs (1.4.2_19):
    Perm Gen 100% full but ample space in old generation.
    First, I thought that even though there was ample space in OG, probably there was no ample "contiguous" space due to fragmentation. However, the GC logs always revealed a coincidence between "perm gen full", concurrent mode failure and "ample space in old gen" such that I think that the CMF errors in this case do not occur due to fragmentation.
    So, my question is: If there is ample contiguous space in old generation for a full promotion guarantee, can concurrent mode failures still occur because perm gen is 100%? (assuming not using CMS perm gen sweeping options). My understanding is that the answer is "yes" because by default, perm gen is collected by Full GC which interferes with CMS and causes a concurrent mode failure. Can somebody please confirm? Plan to increase perm gen size, monitor perm gen growth and the enable perm gen sweeping.
    Thank you
    Gavin

    cybergavin wrote:
    My perm gen was not exactly 100% full.
    The perm gen size was set to 128 MBSo
    -XX:MaxPermSize=128m -XX:PermSize=128m
    and every time it reaches around 127 MB, a concurrent mode failure occurs even though there is ample free space in the old generation and the parallel scavenge in the young generation is successful. And I did not get OOM exceptions.
    So, I wanted to confirm whether the error "concurrent mode failure" can be caused by a Full GC caused by a full perm gen as opposed to its typical causes like full promotion failures and old gen fragmentation.Maybe you need to enable [-XX:+CMSIncrementalMode|http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html#icms.available_options] and maybe [-XX:+CMSIncrementalPacing|http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html#icms.available_options] and use [-XX:CMSIncrementalSafetyFactor=|http://blogs.sun.com/jonthecollector/entry/what_the_heck_s_a] and/or [-XX:CMSIncrementalDutyCycle=|http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html#icms.available_options] / [-XX:CMSIncrementalDutyCycleMin=|http://java.sun.com/javase/technologies/hotspot/gc/gc_tuning_6.html#icms.available_options].
    Or you could just try with a larger -XX:MaxPermSize=256m

  • Any help understanding this (concurrent mode failure)?

    Hi
    Using JDK 1.4.2 on red hat enterprise, haven't yet seen this problem on HP-UX but we are running a different set of settings there.
    -verbose:gc -XX:+PrintGCTimeStamps -XX:+PrintGCDetails -XX:+PrintGCApplicationConcurrentTime -XX:+PrintGCApplicationStoppedTime -XX:+PrintVMOptions -Xms2g -Xmx2g -Xss256k -XX:PermSize=192m -XX:MaxPermSize=192m -XX:+UseConcMarkSweepGC -XX:+UseCMSCompactAtFullCollection -XX:CMSFullGCsBeforeCompaction=1 -XX:+CMSClassUnloadingEnabled -XX:+CMSParallelRemarkEnabled -XX:+UseParNewGC -XX:+CMSPermGenSweepingEnabled -XX:+UseTLAB -XX:CMSMarkStackSize=8M -XX:+DisableExplicitGC
    [GC VM option '+PrintVMOptions'
    VM option 'PermSize=192m'
    VM option 'MaxPermSize=192m'
    VM option '+UseConcMarkSweepGC'
    VM option '+UseCMSCompactAtFullCollection'
    VM option 'CMSFullGCsBeforeCompaction=1'
    VM option '+CMSClassUnloadingEnabled'
    VM option '+CMSParallelRemarkEnabled'
    VM option '+CMSPermGenSweepingEnabled'
    VM option '+UseTLAB'
    VM option 'CMSMarkStackSize=8M'
    VM option '+DisableExplicitGC'
    Here's the snippet from the log file showing the steady growth before finally this particular instance is restarted.
    This happens maybe once per day on 1 or 2 of the 30 odd processes, the rest seem to hover just fine around the 1 gig odd mark and lower.
    I've read Jon's blogs, they've helped a lot, could still use a hand making more sense of this and since we're in production we can't fiddle too much.
    This as simple as saying "you're allocating way too much every so often, find the guilty code"?
    Thanks in advance
    43608.056: [GC 43608.056: [ParNew: 53120K->0K(53184K), 0.0206690 secs] 692909K->643384K(2097088K), 0.0208900 secs]
    Total time for which application threads were stopped: 0.0221600 seconds
    Application time: 5.2950500 seconds
    43613.373: [GC 43613.374: [ParNew: 52564K->0K(53184K), 0.0190870 secs] 695949K->646749K(2097088K), 0.0193270 secs]
    Total time for which application threads were stopped: 0.0206910 seconds
    Application time: 10.7180170 seconds
    43624.112: [GC 43624.113: [ParNew: 52836K->0K(53184K), 0.0267140 secs] 699586K->653006K(2097088K), 0.0270510 secs]
    Total time for which application threads were stopped: 0.0284920 seconds
    Application time: 11.8978000 seconds
    43636.039: [GC 43636.039: [ParNew: 53120K->0K(53184K), 0.0355370 secs] 706126K->657203K(2097088K), 0.0358680 secs]
    Total time for which application threads were stopped: 0.0377480 seconds
    Application time: 6.4194150 seconds
    43642.496: [GC 43642.496: [ParNew: 52790K->0K(53184K), 0.0249040 secs] 709993K->662587K(2097088K), 0.0251460 secs]
    Total time for which application threads were stopped: 0.0265180 seconds
    Application time: 2.2362170 seconds
    43644.759: [GC 43644.759: [ParNew: 53120K->0K(53184K), 0.0174680 secs] 715707K->665330K(2097088K), 0.0176920 secs]
    Total time for which application threads were stopped: 0.0189960 seconds
    Application time: 5.5910270 seconds
    43650.369: [GC 43650.369: [ParNew: 52989K->0K(53184K), 0.0205030 secs] 718320K->669851K(2097088K), 0.0207310 secs]
    Total time for which application threads were stopped: 0.0219250 seconds
    Application time: 1.6515340 seconds
    43652.043: [GC 43652.043: [ParNew: 53117K->0K(53184K), 0.0160820 secs] 722969K->672528K(2097088K), 0.0163420 secs]
    Total time for which application threads were stopped: 0.0176470 seconds
    Application time: 8.4822620 seconds
    43660.543: [GC 43660.543: [ParNew: 53120K->0K(53184K), 0.0326680 secs] 725648K->680627K(2097088K), 0.0328980 secs]
    Total time for which application threads were stopped: 0.0341570 seconds
    Application time: 11.0827410 seconds
    43671.660: [GC 43671.660: [ParNew: 52560K->0K(53184K), 0.0247530 secs] 733188K->685702K(2097088K), 0.0249980 secs]
    Total time for which application threads were stopped: 0.0264230 seconds
    Application time: 4.6662200 seconds
    43676.353: [GC 43676.353: [ParNew: 52910K->0K(53184K), 0.0206240 secs] 738613K->689324K(2097088K), 0.0208810 secs]
    Total time for which application threads were stopped: 0.0223920 seconds
    Application time: 6.6525520 seconds
    43683.027: [GC 43683.027: [ParNew: 52649K->0K(53184K), 0.0195830 secs] 741973K->692332K(2097088K), 0.0198070 secs]
    Total time for which application threads were stopped: 0.0209330 seconds
    Application time: 1.5601640 seconds
    43684.609: [GC 43684.609: [ParNew: 52508K->0K(53184K), 0.0181740 secs] 744840K->695786K(2097088K), 0.0184020 secs]
    Total time for which application threads were stopped: 0.0196160 seconds
    Application time: 4.1460570 seconds
    43688.774: [GC 43688.775: [ParNew: 53120K->0K(53184K), 0.0203780 secs] 748906K->699231K(2097088K), 0.0206190 secs]
    Total time for which application threads were stopped: 0.0218880 seconds
    Application time: 5.8668450 seconds
    43694.663: [GC 43694.663: [ParNew: 53112K->0K(53184K), 0.0213090 secs] 752344K->703173K(2097088K), 0.0215650 secs]
    Total time for which application threads were stopped: 0.0227280 seconds
    Application time: 2.7179640 seconds
    43697.405: [GC 43697.405: [ParNew: 53120K->0K(53184K), 0.0637350 secs] 756293K->705966K(2097088K), 0.0641660 secs]
    Total time for which application threads were stopped: 0.0662140 seconds
    Application time: 15.9736600 seconds
    43713.444: [GC 43713.444: [ParNew: 53120K->0K(53184K), 0.0280160 secs] 759086K->711062K(2097088K), 0.0282570 secs]
    Total time for which application threads were stopped: 0.0296280 seconds
    Application time: 3.8590560 seconds
    43717.333: [GC 43717.334: [ParNew: 52784K->0K(53184K), 0.0289100 secs] 763846K->715157K(2097088K), 0.0292600 secs]
    Total time for which application threads were stopped: 0.0309510 seconds
    Application time: 11.0081190 seconds
    43728.377: [GC 43728.377: [ParNew: 53058K->0K(53184K), 0.0396730 secs] 768216K->719969K(2097088K), 0.0399280 secs]
    Total time for which application threads were stopped: 0.0461840 seconds
    Application time: 1.9920560 seconds
    43730.420: [GC 43730.420: [ParNew: 53120K->0K(53184K), 0.0195590 secs] 773089K->722236K(2097088K), 0.0198520 secs]
    Total time for which application threads were stopped: 0.0305260 seconds
    Application time: 9.5348620 seconds
    43739.984: [GC 43739.985: [ParNew: 53120K->0K(53184K), 0.0210960 secs] 775356K->725317K(2097088K), 0.0213940 secs]
    Total time for which application threads were stopped: 0.0311520 seconds
    Application time: 7.3824160 seconds
    43747.408: [GC 43747.408: [ParNew: 53120K->0K(53184K), 0.0274210 secs] 778437K->729550K(2097088K), 0.0277470 secs]
    Total time for which application threads were stopped: 0.0468940 seconds
    Application time: 8.7856540 seconds
    43756.227: [GC 43756.227: [ParNew: 53120K->0K(53184K), 0.0252000 secs] 782670K->734045K(2097088K), 0.0254550 secs]
    Total time for which application threads were stopped: 0.0315440 seconds
    Application time: 5.8074140 seconds
    43762.070: [GC 43762.071: [ParNew: 52718K->0K(53184K), 0.0268620 secs] 786764K->740127K(2097088K), 0.0271090 secs]
    Total time for which application threads were stopped: 0.0373050 seconds
    Application time: 4.4915470 seconds
    43766.598: [GC 43766.598: [ParNew: 53117K->0K(53184K), 0.0207740 secs] 793245K->743248K(2097088K), 0.0210680 secs]
    Total time for which application threads were stopped: 0.0300810 seconds
    Application time: 4.8663360 seconds
    43771.504: [GC 43771.504: [ParNew: 53120K->0K(53184K), 0.0201270 secs] 796368K->745712K(2097088K), 0.0204750 secs]
    Total time for which application threads were stopped: 0.0388450 seconds
    Application time: 8.6802310 seconds
    43780.212: [GC 43780.212: [ParNew: 53013K->0K(53184K), 0.0219580 secs] 798725K->749746K(2097088K), 0.0222020 secs]
    Total time for which application threads were stopped: 0.0290250 seconds
    Application time: 2.1775650 seconds
    43782.422: [GC 43782.422: [ParNew: 53120K->0K(53184K), 0.0190600 secs] 802866K->752281K(2097088K), 0.0194110 secs]
    Total time for which application threads were stopped: 0.0298550 seconds
    Application time: 7.6248630 seconds
    43790.075: [GC 43790.075: [ParNew: 52950K->0K(53184K), 0.0212610 secs] 805232K->756051K(2097088K), 0.0214950 secs]
    Total time for which application threads were stopped: 0.0298600 seconds
    Application time: 12.4794810 seconds
    43802.596: [GC 43802.596: [ParNew: 52484K->0K(53184K), 0.0249110 secs] 808535K->761359K(2097088K), 0.0252320 secs]
    Total time for which application threads were stopped: 0.0449290 seconds
    Application time: 11.7985830 seconds
    43814.427: [GC 43814.428: [ParNew: 53120K->0K(53184K), 0.0235200 secs] 814479K->765573K(2097088K), 0.0238420 secs]
    Total time for which application threads were stopped: 0.0316530 seconds
    Application time: 8.7485040 seconds
    43823.211: [GC 43823.212: [ParNew: 52661K->0K(53184K), 0.0291330 secs] 818235K->771406K(2097088K), 0.0294070 secs]
    Total time for which application threads were stopped: 0.0419130 seconds
    Application time: 6.9341000 seconds
    43830.186: [GC 43830.186: [ParNew: 53115K->0K(53184K), 0.0226130 secs] 824522K->776196K(2097088K), 0.0229300 secs]
    Total time for which application threads were stopped: 0.0325970 seconds
    Application time: 5.7942000 seconds
    43836.020: [GC 43836.021: [ParNew: 52733K->0K(53184K), 0.0198250 secs] 828929K->780013K(2097088K), 0.0200940 secs]
    Total time for which application threads were stopped: 0.0376430 seconds
    Application time: 10.6327130 seconds
    43846.675: [GC 43846.675: [ParNew: 52737K->0K(53184K), 0.0246010 secs] 832751K->785407K(2097088K), 0.0248280 secs]
    Total time for which application threads were stopped: 0.0261080 seconds
    Application time: 14.3177570 seconds
    43861.019: [GC 43861.019: [ParNew: 53120K->0K(53184K), 0.0218920 secs] 838527K->789600K(2097088K), 0.0221180 secs]
    Total time for which application threads were stopped: 0.0233230 seconds
    Application time: 5.3604960 seconds
    43866.412: [GC 43866.412: [ParNew: 52743K->0K(53184K), 0.0244120 secs] 842344K->793748K(2097088K), 0.0247340 secs]
    Total time for which application threads were stopped: 0.0354410 seconds
    Application time: 11.9592830 seconds
    43878.415: [GC 43878.416: [ParNew: 52790K->0K(53184K), 0.0184740 secs] 846538K->796512K(2097088K), 0.0189340 secs]
    Total time for which application threads were stopped: 0.0383250 seconds
    07/09/12 10:33:05 RE-ATTACHING: Row = [enatis.data.per.PerViewRowImpl] Entity = [enatis.data.per.PerEoImpl] State = [CLEAN] with Key = [oracle.jbo.Key[4291000018PZ ]]
    Application time: 17.7943560 seconds
    43896.238: [GC 43896.238: [ParNew: 52696K->0K(53184K), 0.0260340 secs] 849208K->802267K(2097088K), 0.0263540 secs]
    Total time for which application threads were stopped: 0.0348860 seconds
    Application time: 8.3590650 seconds
    43904.640: [GC 43904.640: [ParNew: 53120K->0K(53184K), 0.0182380 secs] 855387K->805434K(2097088K), 0.0185050 secs]
    Total time for which application threads were stopped: 0.0355610 seconds
    Application time: 6.7479770 seconds
    43911.413: [GC 43911.413: [ParNew: 52766K->0K(53184K), 0.0500520 secs] 858200K->817084K(2097088K), 0.0503110 secs]
    Total time for which application threads were stopped: 0.0567100 seconds
    Application time: 6.7541480 seconds
    43918.228: [GC 43918.228: [ParNew: 53120K->0K(53184K), 0.1331180 secs] 870204K->851295K(2097088K), 0.1333800 secs]
    Total time for which application threads were stopped: 0.1432520 seconds
    Application time: 3.8274410 seconds
    43922.197: [GC 43922.197: [ParNew: 53095K->0K(53184K), 0.1036830 secs] 904391K->875877K(2097088K), 0.1039570 secs]
    Total time for which application threads were stopped: 0.1126310 seconds
    Application time: 4.9308070 seconds
    43927.249: [GC 43927.249: [ParNew: 53120K->0K(53184K), 0.1200000 secs] 928997K->900366K(2097088K), 0.1202910 secs]
    Total time for which application threads were stopped: 0.1375030 seconds
    Application time: 1.9715840 seconds
    43929.348: [GC 43929.349: [ParNew: 53120K->0K(53184K), 0.0779690 secs] 953486K->912753K(2097088K), 0.0783190 secs]
    Total time for which application threads were stopped: 0.0854850 seconds
    Application time: 4.8621560 seconds
    43934.302: [GC 43934.302: [ParNew: 53120K->0K(53184K), 0.1753970 secs] 965873K->938610K(2097088K), 0.1757580 secs]
    Total time for which application threads were stopped: 0.1889440 seconds
    Application time: 3.1126770 seconds
    43937.599: [GC 43937.599: [ParNew: 53120K->0K(53184K), 0.1094920 secs] 991730K->955346K(2097088K), 0.1097650 secs]
    Total time for which application threads were stopped: 0.1182550 seconds
    Application time: 3.8963880 seconds
    43941.623: [GC 43941.623: [ParNew: 53120K->0K(53184K), 0.1480600 secs] 1008466K->976954K(2097088K), 0.1483400 secs]
    Total time for which application threads were stopped: 0.1653780 seconds
    Application time: 7.1542900 seconds
    43948.926: [GC 43948.927: [ParNew: 53120K->0K(53184K), 0.2435230 secs] 1030074K->1014822K(2097088K), 0.2437620 secs]
    Total time for which application threads were stopped: 0.2450340 seconds
    Application time: 6.8893410 seconds
    43956.061: [GC 43956.061: [ParNew: 53120K->0K(53184K), 0.3473630 secs] 1067942K->1050315K(2097088K), 0.3476000 secs]
    Total time for which application threads were stopped: 0.3488460 seconds
    Application time: 0.0000900 seconds
    43956.410: [GC [1 CMS-initial-mark: 1050315K(2043904K)] 1050411K(2097088K), 0.0104150 secs]
    Total time for which application threads were stopped: 0.0109390 seconds
    43956.420: [CMS-concurrent-mark-start]
    43959.018: [CMS-concurrent-mark: 2.597/2.598 secs]
    43959.018: [CMS-concurrent-preclean-start]
    43959.018: [CMS-concurrent-preclean: 0.000/0.000 secs]
    Application time: 6.2326630 seconds
    43962.654: [GC43962.654: [Rescan (parallel) , 0.2701930 secs]43962.924: [weak refs processing, 0.5280520 secs]43963.453: [class unloading[Unloading class sun.reflect.GeneratedMethodAccessor1120]
    [Unloading class sun.reflect.GeneratedMethodAccessor1129]
    [Unloading class sun.reflect.GeneratedMethodAccessor1128]
    [Unloading class sun.reflect.GeneratedMethodAccessor1143]
    [Unloading class sun.reflect.GeneratedMethodAccessor1137]
    [Unloading class sun.reflect.GeneratedMethodAccessor1124]
    [Unloading class sun.reflect.GeneratedMethodAccessor1125]
    [Unloading class sun.reflect.GeneratedMethodAccessor1138]
    [Unloading class sun.reflect.GeneratedMethodAccessor1152]
    [Unloading class sun.reflect.GeneratedMethodAccessor1155]
    [Unloading class sun.reflect.GeneratedMethodAccessor1136]
    [Unloading class sun.reflect.GeneratedConstructorAccessor1022]
    [Unloading class sun.reflect.GeneratedMethodAccessor1118]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor163]
    [Unloading class sun.reflect.GeneratedMethodAccessor1126]
    [Unloading class sun.reflect.GeneratedMethodAccessor1117]
    [Unloading class sun.reflect.GeneratedMethodAccessor1116]
    [Unloading class sun.reflect.GeneratedMethodAccessor1135]
    [Unloading class sun.reflect.GeneratedMethodAccessor1119]
    [Unloading class sun.reflect.GeneratedMethodAccessor1127]
    , 0.0499860 secs]43963.503: [scrub symbol & string tables, 0.0332330 secs] [1 CMS-remark: 1050315K(2043904K)] 1096705K(2097088K), 0.9034220 secs]
    Total time for which application threads were stopped: 0.9046590 seconds
    43963.558: [CMS-concurrent-sweep-start]
    Application time: 0.4523320 seconds
    43964.016: [GC 43964.016: [ParNew: 53120K->0K(53184K), 0.2078860 secs] 955304K->935315K(2097088K), 0.2081220 secs]
    Total time for which application threads were stopped: 0.2142380 seconds
    43966.450: [CMS-concurrent-sweep: 2.678/2.893 secs]
    43966.451: [CMS-concurrent-reset-start]
    43966.494: [CMS-concurrent-reset: 0.043/0.043 secs]
    Application time: 4.2227670 seconds
    43968.457: [GC 43968.457: [ParNew: 53120K->0K(53184K), 0.1068680 secs] 436338K->405964K(2097088K), 0.1071390 secs]
    Total time for which application threads were stopped: 0.1171590 seconds
    Application time: 6.3307910 seconds
    43974.905: [GC 43974.905: [ParNew: 53120K->0K(53184K), 0.1405810 secs] 459084K->438194K(2097088K), 0.1408370 secs]
    Total time for which application threads were stopped: 0.1511130 seconds
    Application time: 2.1166730 seconds
    43977.180: [GC 43977.180: [ParNew: 53087K->0K(53184K), 0.0598370 secs] 491282K->450305K(2097088K), 0.0601160 secs]
    Total time for which application threads were stopped: 0.0775190 seconds
    Application time: 4.7535500 seconds
    43982.000: [GC 43982.001: [ParNew: 53120K->0K(53184K), 0.1475350 secs] 503425K->478341K(2097088K), 0.1477800 secs]
    Total time for which application threads were stopped: 0.1543110 seconds
    Application time: 5.6461180 seconds
    43987.804: [GC 43987.805: [ParNew: 53120K->0K(53184K), 0.1502640 secs] 531461K->510120K(2097088K), 0.1505320 secs]
    Total time for which application threads were stopped: 0.1605520 seconds
    Application time: 4.6071550 seconds
    43992.571: [GC 43992.571: [ParNew: 53120K->0K(53184K), 0.1269550 secs] 563240K->536014K(2097088K), 0.1272820 secs]
    Total time for which application threads were stopped: 0.1360560 seconds
    Application time: 0.9160970 seconds
    43993.633: [GC 43993.634: [ParNew: 52889K->0K(53184K), 0.0339760 secs] 588904K->543199K(2097088K), 0.0343070 secs]
    Total time for which application threads were stopped: 0.0532110 seconds
    Application time: 3.7609360 seconds
    43997.435: [GC 43997.436: [ParNew: 53120K->0K(53184K), 0.0976550 secs] 596319K->564648K(2097088K), 0.0979260 secs]
    Total time for which application threads were stopped: 0.1045230 seconds
    Application time: 3.6492120 seconds
    44001.194: [GC 44001.194: [ParNew: 53120K->0K(53184K), 0.0945310 secs] 617768K->583964K(2097088K), 0.0947840 secs]
    Total time for which application threads were stopped: 0.1057890 seconds
    Application time: 3.4590660 seconds
    44004.757: [GC 44004.757: [ParNew: 52427K->0K(53184K), 0.1735420 secs] 636392K->606952K(2097088K), 0.1739010 secs]
    Total time for which application threads were stopped: 0.1833310 seconds
    Application time: 3.9927710 seconds
    44008.941: [GC 44008.942: [ParNew: 53101K->0K(53184K), 0.0994210 secs] 660053K->631526K(2097088K), 0.0997020 secs]
    Total time for which application threads were stopped: 0.1171670 seconds
    Application time: 3.7763590 seconds
    44012.819: [GC 44012.819: [ParNew: 53064K->0K(53184K), 0.1047140 secs] 684591K->653119K(2097088K), 0.1049430 secs]
    Total time for which application threads were stopped: 0.1061730 seconds
    Application time: 6.3306170 seconds
    44019.256: [GC 44019.256: [ParNew: 53120K->0K(53184K), 0.1091900 secs] 706239K->677429K(2097088K), 0.1094120 secs]
    Total time for which application threads were stopped: 0.1107130 seconds
    Application time: 3.3295540 seconds
    44022.696: [GC 44022.696: [ParNew: 53120K->0K(53184K), 0.0845340 secs] 730549K->692228K(2097088K), 0.0847660 secs]
    Total time for which application threads were stopped: 0.0859710 seconds
    Application time: 5.1413240 seconds
    44027.924: [GC 44027.924: [ParNew: 53120K->0K(53184K), 0.1623040 secs] 745348K->720629K(2097088K), 0.1625430 secs]
    Total time for which application threads were stopped: 0.1638290 seconds
    Application time: 4.4772970 seconds
    44032.565: [GC 44032.565: [ParNew: 53114K->0K(53184K), 0.1628460 secs] 773743K->744931K(2097088K), 0.1631360 secs]
    Total time for which application threads were stopped: 0.1646070 seconds
    Application time: 3.1443530 seconds
    44035.874: [GC 44035.874: [ParNew: 53120K->0K(53184K), 0.1092600 secs] 798051K->761281K(2097088K), 0.1095100 secs]
    Total time for which application threads were stopped: 0.1108940 seconds
    Application time: 3.6947170 seconds
    44039.680: [GC 44039.680: [ParNew: 53120K->0K(53184K), 0.1451310 secs] 814401K->780990K(2097088K), 0.1453770 secs]
    Total time for which application threads were stopped: 0.1468070 seconds
    Application time: 1.5045480 seconds
    44041.331: [GC 44041.331: [ParNew: 52921K->0K(53184K), 0.0628230 secs] 833912K->789345K(2097088K), 0.0630510 secs]
    Total time for which application threads were stopped: 0.0642340 seconds
    Application time: 3.5619510 seconds
    44044.957: [GC 44044.957: [ParNew: 53120K->0K(53184K), 0.1462690 secs] 842465K->810010K(2097088K), 0.1465080 secs]
    Total time for which application threads were stopped: 0.1477730 seconds
    Application time: 2.6063530 seconds
    44047.712: [GC 44047.712: [ParNew: 52725K->0K(53184K), 0.1095910 secs] 862735K->828029K(2097088K), 0.1098200 secs]
    Total time for which application threads were stopped: 0.1110810 seconds
    Application time: 2.8685230 seconds
    44050.691: [GC 44050.691: [ParNew: 53120K->0K(53184K), 0.1112890 secs] 881149K->844230K(2097088K), 0.1115370 secs]
    Total time for which application threads were stopped: 0.1128490 seconds
    Application time: 2.6718830 seconds
    44053.476: [GC 44053.476: [ParNew: 52804K->0K(53184K), 0.1049940 secs] 897034K->859437K(2097088K), 0.1052220 secs]
    Total time for which application threads were stopped: 0.1065130 seconds
    Application time: 2.0643630 seconds
    44055.647: [GC 44055.647: [ParNew: 53003K->0K(53184K), 0.0905500 secs] 912440K->872838K(2097088K), 0.0908130 secs]
    Total time for which application threads were stopped: 0.0921630 seconds
    Application time: 3.8447810 seconds
    44059.584: [GC 44059.584: [ParNew: 53120K->0K(53184K), 0.2533330 secs] 925958K->901400K(2097088K), 0.2535730 secs]
    Total time for which application threads were stopped: 0.2547760 seconds
    Application time: 2.8353870 seconds
    44062.675: [GC 44062.675: [ParNew: 52520K->0K(53184K), 0.1265640 secs] 953920K->916558K(2097088K), 0.1268670 secs]
    Total time for which application threads were stopped: 0.1283310 seconds
    Application time: 2.3321870 seconds
    44065.135: [GC 44065.135: [ParNew: 53120K->0K(53184K), 0.1436290 secs] 969678K->930508K(2097088K), 0.1438740 secs]
    Total time for which application threads were stopped: 0.1452900 seconds
    Application time: 1.1871350 seconds
    44066.473: [GC 44066.473: [ParNew: 53118K->0K(53184K), 0.1240660 secs] 983627K->942342K(2097088K), 0.1243940 secs]
    Total time for which application threads were stopped: 0.1308180 seconds
    Application time: 4.1949150 seconds
    44070.802: [GC 44070.803: [ParNew: 52504K->0K(53184K), 0.2460170 secs] 994847K->966218K(2097088K), 0.2462940 secs]
    Total time for which application threads were stopped: 0.2565070 seconds
    Application time: 2.3949770 seconds
    44073.452: [GC 44073.453: [ParNew: 53120K->0K(53184K), 0.1351640 secs] 1019338K->980150K(2097088K), 0.1354470 secs]
    Total time for which application threads were stopped: 0.1439290 seconds
    Application time: 4.3352340 seconds
    44077.940: [GC 44077.941: [ParNew: 53101K->0K(53184K), 0.2399110 secs] 1033251K->1003714K(2097088K), 0.2402050 secs]
    Total time for which application threads were stopped: 0.2574500 seconds
    Application time: 3.8057930 seconds
    44081.994: [GC 44081.994: [ParNew: 53120K->0K(53184K), 0.2154480 secs] 1056834K->1022831K(2097088K), 0.2157980 secs]
    Total time for which application threads were stopped: 0.2234510 seconds
    Application time: 0.0000730 seconds
    44082.224: [GC [1 CMS-initial-mark: 1022831K(2043904K)] 1022927K(2097088K), 0.0130050 secs]
    Total time for which application threads were stopped: 0.0266360 seconds
    44082.237: [CMS-concurrent-mark-start]
    Application time: 5.4437320 seconds
    44087.689: [GC 44087.689: [ParNew: 53120K->0K(53184K), 0.3132650 secs] 1075951K->1048686K(2097088K), 0.3135120 secs]
    Total time for which application threads were stopped: 0.3218810 seconds
    44090.635: [CMS-concurrent-mark: 8.076/8.398 secs]
    44090.635: [CMS-concurrent-preclean-start]
    44090.635: [CMS-concurrent-preclean: 0.000/0.000 secs]
    Application time: 4.1030320 seconds
    44092.146: [GC 44092.146: [ParNew: 53120K->0K(53184K), 0.2526600 secs] 1101806K->1068987K(2097088K), 0.2529880 secs]
    Total time for which application threads were stopped: 0.2930800 seconds
    Application time: 2.8570730 seconds
    44095.286: [GC 44095.287: [ParNew: 53120K->0K(53184K), 0.1991800 secs] 1122107K->1085754K(2097088K), 0.1994280 secs]
    Total time for which application threads were stopped: 0.2299700 seconds
    Application time: 1.7219600 seconds
    44097.219: [GC 44097.219: [ParNew: 53113K->0K(53184K), 0.1431840 secs] 1138867K->1098491K(2097088K), 0.1434430 secs]
    Total time for which application threads were stopped: 0.1541960 seconds
    Application time: 0.5872220 seconds
    44097.997: [GC 44097.997: [ParNew: 52671K->0K(53184K), 0.1976300 secs] 1151163K->1109541K(2097088K), 0.1978960 secs]
    Total time for which application threads were stopped: 0.2452470 seconds
    Application time: 2.8295910 seconds
    44101.047: [GC 44101.047: [ParNew: 53120K->0K(53184K), 0.1880870 secs] 1162661K->1125669K(2097088K), 0.1883390 secs]
    Total time for which application threads were stopped: 0.2109970 seconds
    Application time: 4.4293580 seconds
    44105.729: [GC 44105.730: [ParNew: 53120K->0K(53184K), 0.2848100 secs] 1178789K->1148409K(2097088K), 0.2850410 secs]
    Total time for which application threads were stopped: 0.3494680 seconds
    Application time: 4.5104910 seconds
    44110.528: [GC 44110.528: [ParNew: 53120K->0K(53184K), 0.2996120 secs] 1201529K->1171112K(2097088K), 0.2999760 secs]
    Total time for which application threads were stopped: 0.3026420 seconds
    Application time: 3.7846210 seconds
    44114.625: [GC 44114.625: [ParNew: 53120K->0K(53184K), 0.2557830 secs] 1224232K->1191281K(2097088K), 0.2560210 secs]
    Total time for which application threads were stopped: 0.2687430 seconds
    Application time: 2.6413800 seconds
    44117.528: [GC 44117.528: [ParNew: 53120K->0K(53184K), 0.1739240 secs] 1244401K->1205940K(2097088K), 0.1741620 secs]
    Total time for which application threads were stopped: 0.1793890 seconds
    Application time: 4.7872250 seconds
    44122.492: [GC 44122.492: [ParNew: 53120K->0K(53184K), 0.3045890 secs] 1259060K->1231422K(2097088K), 0.3048290 secs]
    Total time for which application threads were stopped: 0.3072850 seconds
    Application time: 6.2000570 seconds
    44129.021: [GC 44129.021: [ParNew: 53120K->0K(53184K), 0.3628320 secs] 1284542K->1261727K(2097088K), 0.3630650 secs]
    Total time for which application threads were stopped: 0.3874490 seconds
    Application time: 4.9197640 seconds
    44134.341: [GC 44134.341: [ParNew: 53120K->0K(53184K), 0.3119360 secs] 1314847K->1287281K(2097088K), 0.3121950 secs]
    Total time for which application threads were stopped: 0.3488480 seconds
    Application time: 4.4958250 seconds
    44139.202: [GC 44139.202: [ParNew: 53120K->0K(53184K), 0.2921870 secs] 1340401K->1313317K(2097088K), 0.2924300 secs]
    Total time for which application threads were stopped: 0.3458420 seconds
    Application time: 2.9204910 seconds
    44142.417: [GC 44142.417: [ParNew: 53120K->0K(53184K), 0.1904860 secs] 1366437K->1329808K(2097088K), 0.1907150 secs]
    Total time for which application threads were stopped: 0.1919930 seconds
    Application time: 3.9970250 seconds
    44146.636: [GC 44146.637: [ParNew: 53019K->0K(53184K), 0.2588980 secs] 1382828K->1351164K(2097088K), 0.2591250 secs]
    Total time for which application threads were stopped: 0.2910660 seconds
    Application time: 1.3237030 seconds
    44148.227: [GC 44148.227: [ParNew: 53120K->0K(53184K), 0.0949690 secs] 1404284K->1358754K(2097088K), 0.0952310 secs]
    Total time for which application threads were stopped: 0.1024530 seconds
    Application time: 5.8729190 seconds
    44154.233: [GC 44154.233: [ParNew: 53120K->0K(53184K), 0.3753130 secs] 1411874K->1389102K(2097088K), 0.3755370 secs]
    Total time for which application threads were stopped: 0.4137460 seconds
    Application time: 2.8788090 seconds
    44157.526: [GC 44157.526: [ParNew: 53120K->0K(53184K), 0.1987470 secs] 1442222K->1406367K(2097088K), 0.1990490 secs]
    Total time for which application threads were stopped: 0.2371510 seconds
    Application time: 4.9930280 seconds
    44162.732: [GC 44162.732: [ParNew: 53120K->0K(53184K), 0.3251770 secs] 1459487K->1431734K(2097088K), 0.3254560 secs]
    Total time for which application threads were stopped: 0.3392560 seconds
    Application time: 5.3928510 seconds
    44168.505: [GC 44168.506: [ParNew: 53120K->0K(53184K), 0.3478970 secs] 1484854K->1461670K(2097088K), 0.3481250 secs]
    Total time for which application threads were stopped: 0.4034160 seconds
    Application time: 4.3012280 seconds
    44173.178: [GC 44173.178: [ParNew: 53120K->0K(53184K), 0.2655450 secs] 1514790K->1483729K(2097088K), 0.2657630 secs]
    Total time for which application threads were stopped: 0.2891130 seconds
    Application time: 5.2461070 seconds
    44178.692: [GC 44178.692: [ParNew: 53120K->0K(53184K), 0.3227640 secs] 1536849K->1509975K(2097088K), 0.3230000 secs]
    Total time for which application threads were stopped: 0.3243440 seconds
    Application time: 3.9882730 seconds
    44183.019: [GC 44183.019: [ParNew: 53120K->0K(53184K), 0.2809640 secs] 1563095K->1533122K(2097088K), 0.2812210 secs]
    Total time for which application threads were stopped: 0.2974160 seconds
    Application time: 4.9134590 seconds
    44188.246: [GC 44188.247: [ParNew: 53120K->0K(53184K), 0.3009460 secs] 1586242K->1558260K(2097088K), 0.3012500 secs]
    Total time for which application threads were stopped: 0.3337030 seconds
    Application time: 0.0064750 seconds
    44188.555: [GC44188.556: [Rescan (parallel) , 0.2483640 secs]44188.804: [weak refs processing, 0.7967400 secs]44189.601: [class unloading[Unloading class sun.reflect.GeneratedMethodAccessor1184]
    [Unloading class sun.reflect.GeneratedMethodAccessor1183]
    [Unloading class sun.reflect.GeneratedMethodAccessor1179]
    [Unloading class sun.reflect.GeneratedMethodAccessor1185]
    [Unloading class sun.reflect.GeneratedMethodAccessor1182]
    [Unloading class sun.reflect.GeneratedMethodAccessor1181]
    [Unloading class sun.reflect.GeneratedMethodAccessor1180]
    , 0.0502070 secs]44189.651: [scrub symbol & string tables, 0.0314740 secs] [1 CMS-remark: 1558260K(2043904K)] 1561812K(2097088K), 1.1403420 secs]
    Total time for which application threads were stopped: 1.1420510 seconds
    44189.698: [CMS-concurrent-sweep-start]
    Application time: 2.0153710 seconds
    44191.713: [GC 44191.714: [ParNew: 53015K->0K(53184K), 0.4850080 secs] 1474478K->1433341K(2097088K), 0.4853390 secs]
    Total time for which application threads were stopped: 0.4872470 seconds
    44192.717: [CMS-concurrent-sweep: 2.530/3.018 secs]
    44192.717: [CMS-concurrent-reset-start]
    44192.755: [CMS-concurrent-reset: 0.038/0.038 secs]
    Application time: 2.5580970 seconds
    44194.758: [GC [1 CMS-initial-mark: 1401675K(2043904K)] 1453513K(2097088K), 0.0884220 secs]
    Total time for which application threads were stopped: 0.0896100 seconds
    44194.847: [CMS-concurrent-mark-start]
    Application time: 0.1899980 seconds
    44195.038: [GC 44195.038: [ParNew: 53120K->0K(53184K                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Refer to http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4758307.
    The symptom is similar and you can see various useful/successful workarounds.

  • OutOfMemory exception on device with 2mb memory

    Hi all
    I have experienced the following problem.
    The application I have developed works fine on a sonyerricson w800i but gives outofmemory on a nokia 6131
    The se800 reports 1048572 bytes available memory (1mb)
    The nokia 6131 reports 2097152 bytes available memory (2mb)
    For debugging purposed I do a System.gc() and report free memory, on average the se800 has 77% free whereas the nokia starts with 55% free and it degrades quickly.
    Its the same application and code so does this mean the nokia has a problem? It is my code that is at fault?
    When I first encountered outOfMemory exception I followed some guidelines removing any inner classes dereferencing object by obj = null and making sure I close streams etc, this helped with general memory consumption. I tested it with the emulator limiting memory to 400k and I have an average of 20% free.
    I suspected the screensize to play a role as I paint the canvas manually but on the emulator I use the defaultcolorphone which has a larger screen than the nokia.
    Where could the problem lie?
    GX

    Hi MelGohan
    Thanks for your reply. In order to test how much free memory I am using the following method:
        public static String getFreeMem()
            System.gc();
            long tot = Runtime.getRuntime().totalMemory();
            long free = Runtime.getRuntime().freeMemory();
            int per = (int)(((float)free / (float)tot) * 100);
            String s = gx.Utils.padString(String.valueOf(free), -8, " ") + " " + gx.Utils.padString(String.valueOf(per), -3, " ") + "%" + " / " + String.valueOf(tot);
            return s;
        }There are no other applications in memory as I tried restarting the phone and the results were the same hence I can see exactly how much memory is available (2097152 bytes) and how much is free/used.
    On the emulator and the sony erricson the memory usage is stable whereas the nokia keeps using more and more, I am currently setting all unused objects = null when done using them but have found no difference so far.
    I have put the same post on the nokia boards and there is more info there:
    http://discussion.forum.nokia.com/forum/showthread.php?t=108401
    GX

  • Corrupted low memory after Wake from Sleep mode

    Got the following error message in dmesg when I resumed from suspend to ram:
    ------------[ cut here ]------------
    WARNING: at arch/x86/kernel/check.c:134 check_for_bios_corruption+0xe5/0xf0()
    Hardware name: G31M-ES2L
    Memory corruption detected in low memory
    Modules linked in: nvidia(P) rfcomm sco bridge stp llc bnep l2cap usbhid hid btusb bluetooth rfkill parport_pc ppdev cpufreq_powersave cpufreq_ondemand button thermal acpi_cpufreq freq_table processor led_class sg snd_hda_codec_realtek lp parport snd_hda_intel snd_hda_codec snd_hwdep iTCO_wdt iTCO_vendor_support snd_pcm snd_timer uhci_hcd snd soundcore ehci_hcd snd_page_alloc fuse r8169 mii evdev pcspkr usbcore i2c_i801 i2c_core intel_agp rtc_cmos rtc_core rtc_lib ext4 mbcache jbd2 crc16 sd_mod sr_mod cdrom ata_generic pata_acpi floppy ata_piix libata scsi_mod
    Pid: 7, comm: events/0 Tainted: P 2.6.33-ck #1
    Call Trace:
    [<ffffffff81048126>] warn_slowpath_common+0x76/0xb0
    [<ffffffff810481bc>] warn_slowpath_fmt+0x3c/0x40
    [<ffffffff8102dbd5>] check_for_bios_corruption+0xe5/0xf0
    [<ffffffff8102dbe0>] ? check_corruption+0x0/0x30
    [<ffffffff8102dbe9>] check_corruption+0x9/0x30
    [<ffffffff81063873>] worker_thread+0x173/0x320
    [<ffffffff81068a10>] ? autoremove_wake_function+0x0/0x40
    [<ffffffff81063700>] ? worker_thread+0x0/0x320
    [<ffffffff8106849e>] kthread+0x8e/0xa0
    [<ffffffff8100ad24>] kernel_thread_helper+0x4/0x10
    [<ffffffff81068410>] ? kthread+0x0/0xa0
    [<ffffffff8100ad20>] ? kernel_thread_helper+0x0/0x10
    ---[ end trace 10d1540186ede85d ]---
    SMBIOS 2.4 present.
    BIOS Information
            Vendor: Award Software International, Inc.
            Version: F10
            Release Date: 09/29/2009
            Address: 0xE0000
            Runtime Size: 128 kB
            ROM Size: 512 kB
            Characteristics:
                    PCI is supported
                    PNP is supported
                    APM is supported
                    BIOS is upgradeable
                    BIOS shadowing is allowed
                    Boot from CD is supported
                    Selectable boot is supported
                    EDD is supported
                    5.25"/360 kB floppy services are supported (int 13h)
                    5.25"/1.2 MB floppy services are supported (int 13h)
                    3.5"/720 kB floppy services are supported (int 13h)
                    3.5"/2.88 MB floppy services are supported (int 13h)
                    Print screen service is supported (int 5h)
                    8042 keyboard services are supported (int 9h)
                    Serial services are supported (int 14h)
                    Printer services are supported (int 17h)
                    CGA/mono video services are supported (int 10h)
                    ACPI is supported
                    USB legacy is supported
                    LS-120 boot is supported
                    ATAPI Zip drive boot is supported
                    BIOS boot specification is supported
                    Targeted content distribution is supported
    What this error mean?
    Last edited by cool (2010-05-10 14:28:09)

    Anytime you have external drives connected and wake up from sleep there can bre a delay if the drive was put to sleep also. Depending upon the drive the delay can be anywhere from 10 seconds to 30 seconds. This is because the drive has to spin up, and then be recognized by the system. If one of the two drives you have is going bad, that time could be much longer. If one of the drives is going bad that could be why your computer is crashing when waking it from sleep every now and then. It is also possible that the system and the energy mangement system built in to the firmware of one of your drives is not compatible, which could cause problems.
    The bottom line is that in my opinion, the problem is with one or both of the external drives. Have you tried disconnecting the external drive and then waking it from sleep? That would be the first thing I would suggest you try. Just disconnect it and don't use it for a few days, if you can, and see if the situation improves. Another thing to try is to go to your energy saver settings and make sure that the checkbox that says "put the hard disk(s) to sleep when possible" is not checked. This way neither your internal or external drive will go to sleep. See if the situation improves.
    Have you run the hardware test to make sure there is not a hardware issue with any of the internal components? Have you done any basic maintenance on your Mac? Have you run Disk Utility on your internal drive to make sure there is not problem with its file structure? Have you checked to make sure that your disk permissions are set properly by running Disk Utility and checking them?
    That is all I can think of right now.
    Good Luck!

  • Powerbook Lower Memory Slot Issue, what are my options?

    Hi there,
    I have a Powerbook G4 1.5ghz that I purchased in October of 2004. I had no problems with it until after upgrading the RAM to 2 x 512mb chips and then installing Tiger which resulted in me later notcing the missing RAM and learning about the lower memory slot failure issue.
    I find that sometimes if I remove the RAM and try and power it up and then replace the RAM again that the lower slot ocassionaly does come back. Trouble is though that the machine will either crash or I loose the other RAM slot when I have to shut it down. It seems to be so intermittent this way and I'm tired of constantly removing the RAM to fiddle about with it.
    My serial number begins W8441, so it isn't covered by the returns programe. I would call Apple Support, but I am put off by a £35 charge just to have them discuss and diagnose the problem.
    I'm in the UK and as I don't have Applecare and I'm not elgiable for the returns programe can anyone tell me what they charge for a logic board replacment? Looking at what they charge in the US, it's not cheap.
    I use my Powebook for Final Cut Pro, DVD Studio Pro, After Effects mainly and I had been alright with 1gig when it was working.
    I'm really trying to decide what the best thing to do is....
    - Do I pay for the logic board replacement, which I'm not really sure I can afford right now, or to be without my machine... especially as I have read that it can just fail again.
    - Should I just buy a 1gig stick for the upper slot and try and sell my old RAM, as that would be cheaper than getting the logic board replaced?
    It's a real shame that Apple doesn't seem to want to ackowledge that this effects other users as I'd been so impressed with everything about Apple up until now.
    Thanks for any advice.

    (Browse down for findings and questions).
    The notorious lower-memory-slot-bug has hit my finally too... I never believed it until now (and I've immediately signed the petition).
    I am outside warranty and I never bought Applecare either.
    Also my powerbook, a very dear machine to me, is a less common type to have this problem: a 1 GHz G4 15" FireWire 800 OS 10.3.9 type. Funny enough my older powerbook ( a G3 Bronze) is still running strong with no problems whatsoever.
    My G4 15" also has the "white spots" problem and a dead superdrive... I cannot believe how many hardware problems I'm having with this machine in comparison to all my older macs - even my sluggish powerMac 7200/90 never gave me this many headaches...
    Alright, I'll stop complaining for now.
    I've been able to browse the internet on this and found the following statements:
    The lower memory slot gets "fried" because of a OS 10.3.9 upgrade,
    or possibly due to overheating when the powerbook is put on the users' lap,
    or possibly due to picking the powerbook up by the corners so the metal gets bent.
    + I have only seen one case where someone's UPPER memory slot was defective.
    The solution to this problem (replacing the logic board) didn't seem to be definate in many cases so I'm reluctant to try this myself (and I have very little money). The alternative (replacing the upper slot memory with a bigger type of RAM) seems a bit scary to me,
    because I wonder:
    -will the upper memory slot RAM get "fried" eventually as well after a while?
    -do you need to have something installed in the lower slot or is it possible to just install one RAM card only?
    -are there more people with a 1 GHz PB that have this problem? It seems it's mostly people with a 1,67 GHz that have been bitten by this bug and maybe that's why Apple decided to give the majority a free repair. I am not sure whether that is a common policy, I am part of the minority it seems.
    As a solutions someone posted on a board that we should all buy KTA-PBG4333/1G RAM, but here in Dutch stores it is said this memory is only compatible with 17" powerbooks....
    Does anyone know if it is suitable for 15" as well??
    G4 Powerbook   Mac OS X (10.3.9)   1 GHz G4 Powerbook FW800

  • I want to ask something about firefox. why firefox use very much memory? can you develop to reduce memory comsume? this problem is very distrub in my PC with low memory.

    I want to ask something about firefox.
    why firefox use very much memory?
    can you develop to reduce memory comsume?
    this problem is very distrub in my PC with low memory.
    == This happened ==
    Every time Firefox opened

    How much memory is Firefox using right now?
    # Press '''CTRL+SHIFT+ESC''' to load the Task Manager window
    # Click the Processes tab at the top. (Click once near the top of the window if you don't see tab
    # Find firefox.exe, and see how many kilobytes of memory it's using.
    Showing around 80MB when Firefox first starts is normal. Right now, I have 75 tabs open and it's using 500MB - this varies a lot depending on what you have in the tabs.
    Other than high memory usage, what other problems are you experiencing? (Examples include slowness, high CPU usage, and failure to load certain sites)
    Many of these issues, including high memory usage, can be caused by misbehaving add-ons. To see if this is the case, try the steps at [[Troubleshooting extensions and themes]]. Outdated plugins are another cause of this issue - you can check for this at http://www.mozilla.com/plugincheck

  • Low Memory Environment Render Issues...

    Howdy folks,
         I've been working on a 13 minute promotional video for a non-profit summer camp. It is made up of mostly still images with some ken burns effects, a narration track, a music track, some titles, and some logo overlays.
         I am doing this on a 3.2 Ghz P4 with only 1.5G ram under XP sp3. I realize this is not an ideal PPro box.
         Windows XP is configured to use 2 drives for VM paging (3Gigs each). All drives have over 100gigs of free space on them.
         Now until recently I've only had a couple of small issues which I suspected were related to trying to do this in a low memory environment. In one case a flash render would die at the same point every time (error was something along the lines of "did not return a valid frame"), and simply scaling down the still image clip at that point in the sequence so that it was closer to the project size took care of it. That method also helped in a few cases where some images would not render at all, and just appeared as black screens in the final video (the render process did not fail, but the end result was missing clips).
         Then there was one case it seemed to fail at random points. A simple reboot took care of that, and it exported just fine.
         But now, however..... Now it's back to failing at random points (sometimes it gets 3500 frames in... sometimes as far as 13400... or anywhere in between) and additionally, by viewing the incomplete flash video file with VLC (which I need to do in order to find out where it failed because PPro never tells me) I find that some of the images are black screens, as before.
         The problem now, is that it's never the same point of failure, and it's never the same images blacked out. And rebooting and or killing off extra processes does not help.
         Now this was rendering fine last week. Here's the kicker - I haven't changed much of anything since then. The project is still the same length, with just about the same number of cuts, tracks, and assets used. The only things I've done since then are:
         1) I duplicated the sequence so that I can make some changes unique to the web-version of the video, and still save the old sequence to go back to. The old sequence has remained untouched and I haven't even looked at it since then.
         2) Created 2 new titles and inserted them in place of some old ones in the new sequence which weren't appropriate for the web version of the video (only the text is different in these new titles... they are the same style, size, etc. as the old ones they replaced)
         3) I shortened some empty time/space/pauses between sections of the sequence.
         So those are all minor changes... but I can't shake the rendering issue no matter how many times I restart or scale down an image that was blacked out or appears at one of the random points of outright failure (again, with the "did not return a valid frame" issue).
         I did notice that after I duplicated the original sequence, the project takes much longer to open. Does having another sequence present in the asset bin use that much more resources? Even if the clips in that 2nd sequence use the same assets as another? I'm tempted to remove the original sequence and see what happens, but I don't want to lose it and have to un-edit the web version whenever I want to go back and re-render the DVD version.
         So basically I'm looking for anything that might cause the small changes I made to be giving me so much grief now.
         Any input is appreciated. Thanks.

    You may have a corrupt project. Try creating a new project and importing the old one into it.
    If you still experience problems then carefully do each of these troubleshooting tips. One or more of them is likely to help.
    Cheers
    Eddie

  • Low memory and slow search

    My mac mini is slow, is it because of low memory?

    If you have more than ten or so files or folders on your Desktop, move them, temporarily at least, somewhere else in your home folder.
    If iCloud is enabled, disable it.
    Disconnect all wired peripherals except keyboard, mouse, and monitor, if applicable. Launch the usual set of applications you use when you notice the problem.
    Step 1
    Launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Activity Monitor in the page that opens.
    Select the CPU tab.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Step 2
    You must be logged in as an administrator to carry out this step. Launch the Console application in the same way as above, and select “system.log” from the file list. Post the 50 or so most recent messages in the log — the text, please, not a screenshot.
    Important: Some personal information, such as your name, may appear in the log. Edit it out before posting.
    Step 3
    Same as step 2, but select "kernel.log" from the file list.

  • Low memory warning on my iPad (3rd gen)

    I'm receiving a low memory warning on my iPad (3rd generation), but I can't find the RAM info anywhere under the Settings.  I always close my apps using the Home button, so nothing should be open except the app I'm using.  How can I see the RAM available, and what can I do about the low memory warning?

    You may have many apps open. For iOS 7 users, there’s an easy way to see which apps are open in order to close them. By double-tapping the home button on your iPhone or iPad, the new multitasking feature in iOS 7 shows full page previews of all your open apps. Simply scroll horizontally to see all your apps, and close the apps with a simple flick towards the top of the screen.
     Cheers, Tom

  • Low Memory when rendering a video file (Win 8.1; HP Envy 700-230qe)

    Rendering a 4-minute video (with several video tracks) using Sony Vegas Pro13, keeps stopping around 70-80% of completion --- saying that there's low memory.  
    How could that happen on a HP Envy 700-230qe with 32GB DDR3 memory?
    I look at the Task Manager:  the  "Commited" memory keeps increasing during the rendering until it hits the full number (36 GB in my case)  and then the memory is depleted, which stops the render.  
    (No changes to the system except addition of an SSD drive as main drive, and a Blu-ray burner)
    This question was solved.
    View Solution.

    Hello @Mango7 
    I understand that you are having issues with rendering a video using Sony Vegas Pro 13. I suggest you look to the Vegas Pro - Video as it would appear there are settings within the software that should help you. If you cannot find a post that matches what you are trying to do or the issue you are facing I suggest you post there as it would appear that their are numerous community members there that are willing to help.
    Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Failure Type: Memory

    I recently posted about adobe software crashes that i think are memory-related and then found this error message:
    Power On Self-Test:
    Last Run: 10/23/10 1:09 PM
    Result: Failed
    Failure Type: Memory
    Memory Slot: DIMM 4/DIMM Riser A
    i dont have any memory installed in that slot nor do i understand how to fix this. i went in and moved my memory sticks around but the crashes still happened, though not as much. i have plenty of memory available. here is a typical crash report:
    Process: Acrobat [22144]
    Path: /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Acrobat
    Identifier: com.adobe.Acrobat.Pro
    Version: 8.2.4 (8.2.4)
    Code Type: X86 (Native)
    Parent Process: launchd [157]
    Date/Time: 2010-09-23 09:04:50.578 -0400
    OS Version: Mac OS X 10.6.4 (10F569)
    Report Version: 6
    Interval Since Last Report: 547134 sec
    Crashes Since Last Report: 1
    Per-App Interval Since Last Report: 962662 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: 1A5CDF91-2C84-4248-9BB6-B2D55CA531FB
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000005
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.adobe.Acrobat.framework 0x83fa55ea ScrubCabValue(tASCabinet*, tASCabValueRec*) + 16
    1 com.adobe.Acrobat.framework 0x83fc2787 ScrubThisValue(void*, void const*, void const*) + 21
    2 com.adobe.Acrobat.framework 0x83fb7966 ASDictionaryEnum + 62
    3 com.adobe.Acrobat.framework 0x83fc2743 ASCabDestroy + 75
    4 ...robatPlugin.ImageConversion 0x8a33d87a ToConversionProc(tASCabinet*, unsigned long, tPDDoc*, tASPathNameRec*, tASFileSysRec*, tAVStatusMonitorProcs*, tAVConversionClientData*) + 848
    5 com.adobe.Acrobat.framework 0x842676fa AVConversionConvertFromPDFWithHandler + 270
    6 com.adobe.Acrobat.framework 0x842295ce DEFAULTAVDocDoSaveAsWithParams + 3690
    7 ...dobe.AcrobatPlugin.Comments 0x8c64f80b CAVRedact::sAVDocDoSaveAsWithParams(AVBaseDocument*, tAVDocSaveParams*) + 161
    8 ...adobe.AcrobatPlugin.Web2PDF 0x86aa0140 Web2PDF_AVDocDoSaveAsWithParams(AVBaseDocument*, tAVDocSaveParams*) + 162
    9 com.adobe.Acrobat.framework 0x8422988d AVDocDoSaveAsWithParams + 85
    10 com.adobe.Acrobat.framework 0x844ca959 CAVExportTask::ExecuteAsFormat(void*) + 147
    11 com.adobe.Acrobat.framework 0x843bc1d3 InternalAVMenuItemExecute(tAVMenuItem*, long) + 159
    12 com.adobe.Acrobat.framework 0x843bc2d9 AVMenuItemExecute + 25
    13 com.adobe.Acrobat.framework 0x841999be -[AVCocoaMenuItem executeNSMenuItem:] + 98
    14 com.apple.AppKit 0x06086f1e -[NSApplication sendAction:to:from:] + 112
    15 com.apple.AppKit 0x06086dd1 -[NSMenuItem _corePerformAction] + 435
    16 com.apple.AppKit 0x06086ac2 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    17 com.apple.AppKit 0x060869ae -[NSMenu performActionForItemAtIndex:] + 65
    18 com.apple.AppKit 0x06086961 -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    19 com.apple.AppKit 0x060868c7 -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    20 com.apple.AppKit 0x0608680b -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    21 com.apple.AppKit 0x0607af49 NSSLMMenuEventHandler + 404
    22 com.apple.HIToolbox 0x00324f2f DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    23 com.apple.HIToolbox 0x003241f6 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    24 com.apple.HIToolbox 0x003469bb SendEventToEventTarget + 52
    25 com.apple.HIToolbox 0x00372fa7 SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    26 com.apple.HIToolbox 0x00397d1c SendMenuCommandWithContextAndModifiers + 66
    27 com.apple.HIToolbox 0x00397cd1 SendMenuItemSelectedEvent + 121
    28 com.apple.HIToolbox 0x00397bda FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    29 com.apple.HIToolbox 0x003672e4 MenuSelectCore(MenuData*, Point, double, unsigned long, OpaqueMenuRef**, unsigned short*) + 454
    30 com.apple.HIToolbox 0x00366a56 _HandleMenuSelection2 + 465
    31 com.apple.HIToolbox 0x00366874 _HandleMenuSelection + 53
    32 com.apple.AppKit 0x0607448a _NSHandleCarbonMenuEvent + 285
    33 com.apple.AppKit 0x0604903a _DPSNextEvent + 2304
    34 com.apple.AppKit 0x060482ca -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    35 com.apple.AppKit 0x0600a55b -[NSApplication run] + 821
    36 com.adobe.Acrobat.framework 0x83f8f01a CAcrobatApp::Run(int, char**) + 404
    37 com.adobe.Acrobat.framework 0x83f8e3ea RunAcrobat + 332
    38 com.adobe.Acrobat.Pro 0x00002e8b main + 515
    39 com.adobe.Acrobat.Pro 0x00002602 _start + 228
    40 com.adobe.Acrobat.Pro 0x0000251d start + 41
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x000f5942 kevent + 10
    1 libSystem.B.dylib 0x000f605c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x000f5519 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x000f52be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x000f4d41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x000f4b86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x000fd066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x000fcd22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x000fe9b8 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x00d4ca3a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x00d3838d TSWaitOnConditionTimedRelative + 202
    5 ...ple.CoreServices.CarbonCore 0x00d33d67 MPWaitOnQueue + 250
    6 AdobeACE 0x8fc395b3 ACEMPThread::Task() + 133
    7 AdobeACE 0x8fc39527 TaskGlue + 17
    8 ...ple.CoreServices.CarbonCore 0x00d17dee PrivateMPEntryPoint + 68
    9 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    10 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x000fd066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x000fcd22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x000fe9b8 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x00d4ca3a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x00d3838d TSWaitOnConditionTimedRelative + 202
    5 ...ple.CoreServices.CarbonCore 0x00d33d67 MPWaitOnQueue + 250
    6 AdobeACE 0x8fc395b3 ACEMPThread::Task() + 133
    7 AdobeACE 0x8fc39527 TaskGlue + 17
    8 ...ple.CoreServices.CarbonCore 0x00d17dee PrivateMPEntryPoint + 68
    9 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    10 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x000fd066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x000fcd22 pthread_condwait + 1191
    2 libSystem.B.dylib 0x000fe9b8 pthreadcondwait$UNIX2003 + 73
    3 ...ple.CoreServices.CarbonCore 0x00d4ca3a TSWaitOnCondition + 126
    4 ...ple.CoreServices.CarbonCore 0x00d3838d TSWaitOnConditionTimedRelative + 202
    5 ...ple.CoreServices.CarbonCore 0x00d33d67 MPWaitOnQueue + 250
    6 AdobeACE 0x8fc395b3 ACEMPThread::Task() + 133
    7 AdobeACE 0x8fc39527 TaskGlue + 17
    8 ...ple.CoreServices.CarbonCore 0x00d17dee PrivateMPEntryPoint + 68
    9 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    10 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x000cf15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x000fcca5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x0012b848 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x00d383b5 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x00d33d67 MPWaitOnQueue + 250
    5 ...adobe.AcrobatPlugin.Updater 0x86ccf21c -[ARMHeartbeat broadcast:] + 598
    6 ...adobe.AcrobatPlugin.Updater 0x86cad355 BroadcastTask(void*) + 61
    7 ...ple.CoreServices.CarbonCore 0x00d17dee PrivateMPEntryPoint + 68
    8 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    9 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x000cf0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x000cf867 mach_msg + 68
    2 com.apple.CoreFoundation 0x00ab5faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x00ab5094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x00ab4ec1 CFRunLoopRunInMode + 97
    5 ...dobe.AcrobatPlugin.Comments 0x8c670723 CMessageCommReceiver::DoBackgroundTask() + 141
    6 ...dobe.AcrobatPlugin.Comments 0x8c6712f3 CMPTask::CMPTaskEntryProc(void*) + 65
    7 ...ple.CoreServices.CarbonCore 0x00d17dee PrivateMPEntryPoint + 68
    8 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    9 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x000ee086 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x00af580d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    3 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x000f49d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x000f4f68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x000f4b86 start_wqthread + 30
    Thread 9:
    0 libSystem.B.dylib 0x000cf0fa machmsgtrap + 10
    1 libSystem.B.dylib 0x000cf867 mach_msg + 68
    2 com.apple.CoreFoundation 0x00ab5faf __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x00ab5094 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x00abafd4 CFRunLoopRun + 84
    5 com.apple.DesktopServices 0x044fce13 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 643
    6 ...ple.CoreServices.CarbonCore 0x00d17dee PrivateMPEntryPoint + 68
    7 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    8 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x000f49d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x000f4f68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x000f4b86 start_wqthread + 30
    Thread 11:
    0 libSystem.B.dylib 0x000fd066 _semwaitsignal + 10
    1 libSystem.B.dylib 0x00128c64 nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x00128ba2 usleep$UNIX2003 + 61
    3 com.apple.AppKit 0x061b21a1 -[NSUIHeartBeat _heartBeatThread:] + 2039
    4 com.apple.Foundation 0x01ee68d4 -[NSThread main] + 45
    5 com.apple.Foundation 0x01ee6884 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x000fc81d pthreadstart + 345
    7 libSystem.B.dylib 0x000fc6a2 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x000f49d2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x000f4f68 pthreadwqthread + 941
    2 libSystem.B.dylib 0x000f4b86 start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x35d72504 ebx: 0x83fa55e8 ecx: 0x83f92cf0 edx: 0x00000005
    edi: 0x00000005 esi: 0x2f553404 ebp: 0xbfffe2c8 esp: 0xbfffe260
    ss: 0x0000001f efl: 0x00010286 eip: 0x83fa55ea cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00000005
    Binary Images:
    0x1000 - 0x2fff +com.adobe.Acrobat.Pro 8.2.4 (8.2.4) <BCB633B4-DA6B-4CC3-86ED-19F52A41642C> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Acrobat
    0x6000 - 0x6ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9000 - 0x73fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0xce000 - 0x274feb libSystem.B.dylib 125.2.0 (compatibility 1.0.0) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    0x2f5000 - 0x2fffe7 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
    0x307000 - 0x30dfff 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
    0x315000 - 0x318ffb 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
    0x31d000 - 0x641fef com.apple.HIToolbox 1.6.3 (???) <0A5F56E2-9AF3-728D-70AE-429522AEAD8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x781000 - 0x7e5ffb 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
    0x807000 - 0x81cfff 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
    0x832000 - 0x8e0ff3 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
    0x90a000 - 0x94dff7 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
    0x976000 - 0x992fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9a2000 - 0x9a4ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9a9000 - 0x9b3ffb 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
    0x9bc000 - 0x9bcff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x9c4000 - 0x9c4ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9cc000 - 0xa47fe7 com.apple.audio.CoreAudio 3.2.2 (3.2.2) <51D0E2DC-B15F-AF6C-70D8-026DDAD4E2A5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0xa79000 - 0xbf3fe3 com.apple.CoreFoundation 6.6.3 (550.29) <00373783-3744-F47D-2191-BEEA658F0C3D> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0xceb000 - 0xceefe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0xcf1000 - 0x1011feb com.apple.CoreServices.CarbonCore 861.13 (861.13) <52803668-3669-36BD-57DD-078FBA835081> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x1085000 - 0x112eff7 com.apple.CFNetwork 454.9.7 (454.9.7) <B740E1BD-01B7-34C2-2A9A-6DBC68B1EA5B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x1192000 - 0x11d6fe7 com.apple.Metadata 10.6.3 (507.10) <630494FA-3BB3-EDD3-E10B-8DAAF4831E26> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x11fd000 - 0x12c7fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x1326000 - 0x13a6feb 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
    0x13da000 - 0x140dff7 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
    0x1425000 - 0x14c2fe3 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
    0x1501000 - 0x1527fff 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
    0x153e000 - 0x1599ff7 com.apple.framework.IOKit 2.0 (???) <A013B850-6ECB-594A-CBD6-DB156B11871B> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x15b8000 - 0x173afe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2314BD12-0821-75BB-F3BC-98D324CFD30A> /usr/lib/libicucore.A.dylib
    0x179c000 - 0x17a5ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x17af000 - 0x17c3fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x17cc000 - 0x17d9ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x17e2000 - 0x188ffe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x18a3000 - 0x18b1fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x18b6000 - 0x18c2ff7 libkxld.dylib ??? (???) <322A4B52-8305-3081-6B74-813C3A87A56D> /usr/lib/system/libkxld.dylib
    0x18c6000 - 0x190cff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x1919000 - 0x1b7cfef com.apple.security 6.1.1 (37594) <8AE73F5F-936C-80F6-B05B-A50C3082569C> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x1c57000 - 0x1d10fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x1d1e000 - 0x1d5bff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <398BB007-41FD-1A30-26D8-CB86ED5E467E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x1d78000 - 0x1da0ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x1dab000 - 0x1eacfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x1ed0000 - 0x2140ffb com.apple.Foundation 6.6.3 (751.29) <E77D3906-99F4-FEF4-FBB0-86FB3C94073E> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x224f000 - 0x2a3e557 com.apple.CoreGraphics 1.543.50 (???) <74533178-5C90-0F54-1B06-2E1C5251ED5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x2b06000 - 0x2cc0fe3 com.apple.ImageIO.framework 3.0.3 (3.0.3) <A93A514B-C1BF-21D0-FB03-CB775DE4FFAA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x2d1a000 - 0x2d7bfe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x2db3000 - 0x2e4eff7 com.apple.ApplicationServices.ATS 4.3 (???) <7ECA252B-5F67-2816-A4F0-73E1DC833728> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x2e75000 - 0x2f25ff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x2f5c000 - 0x2fadff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x2fd7000 - 0x2fe8ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x2ff5000 - 0x309dffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x30ca000 - 0x30deffb 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
    0x30ec000 - 0x30ecff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x30ef000 - 0x3138fe7 libTIFF.dylib ??? (???) <9CFF48CC-4852-4D06-17AC-3C947C824159> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x3143000 - 0x3147ff7 libGIF.dylib ??? (???) <3ECD4D2C-40FE-E9A0-A2D2-E36D1C00D3A8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x314c000 - 0x3167ff7 libPng.dylib ??? (???) <36A3D75E-5178-4358-7F02-444E276D61AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x316e000 - 0x3170ff7 libRadiance.dylib ??? (???) <AB06F616-E3EA-5966-029A-8AA44BBE5B28> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x3174000 - 0x3198ff7 libJPEG.dylib ??? (???) <5CE96981-6B2A-D15B-4A17-E7BD329095B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x319f000 - 0x327cff7 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
    0x328a000 - 0x328aff7 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
    0x328d000 - 0x32cfff7 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
    0x32d8000 - 0x3347ff7 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
    0x3350000 - 0x3766ff7 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
    0x37a8000 - 0x3bddff7 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
    0x3d63000 - 0x3e55ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <D2C86308-F998-C83D-F49B-CD484D4EFE6A> /usr/lib/libcrypto.0.9.8.dylib
    0x3ea7000 - 0x3ea8ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x3eac000 - 0x3f62ffb libFontParser.dylib ??? (???) <067DC1A2-764B-41EA-B07E-4205472749B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x3ff2000 - 0x402aff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <76C02F5C-98FD-BD64-B5FB-C698FB76EA25> /usr/lib/libcups.2.dylib
    0x4037000 - 0x4057fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x4061000 - 0x40a5ff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x40c4000 - 0x442cff7 com.apple.QuartzCore 1.6.2 (227.22) <4288F0D2-0C87-F054-C372-8764B44DE024> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x44fb000 - 0x45d6fe7 com.apple.DesktopServices 1.5.7 (1.5.7) <A69072AD-C47E-A00D-4A69-6E46A7FB2119> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x4621000 - 0x474dfff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x47b3000 - 0x4803ff7 com.apple.framework.familycontrols 2.0.1 (2010) <B9762E20-543D-13B9-F6BF-E8585F04CA01> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x481a000 - 0x482cff7 com.apple.MultitouchSupport.framework 204.13 (204.13) <F91A4E32-01AA-49DB-2205-3DBE1FEFFC43> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x4839000 - 0x4857ff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x486e000 - 0x487cff7 com.apple.opengl 1.6.9 (1.6.9) <4F06C166-00CF-5ACF-77E3-5A960A5E8AD3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x4884000 - 0x48b5ff7 libGLImage.dylib ??? (???) <9340012D-595A-6243-9C97-7D30D76D9D9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x48bd000 - 0x48defe7 com.apple.opencl 12.1 (12.1) <DA2AC3FA-ED11-2D10-21E9-7BDF4778B228> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x48e7000 - 0x48ebff7 IOSurface ??? (???) <66E11D8E-CF4B-EFD0-37F9-20177C647021> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x48f3000 - 0x4936ff7 libGLU.dylib ??? (???) <2093A1FB-67BD-39E0-CDE5-A97A77BDDBCE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x4944000 - 0x494fff7 libGL.dylib ??? (???) <B87E0676-F5EF-8DA3-6DEE-13C43B3832A7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x495e000 - 0x4a6aff7 libGLProgrammability.dylib ??? (???) <1B315838-F477-5416-7504-67EC3433AD4A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x4a89000 - 0x4a8cff7 libCoreVMClient.dylib ??? (???) <CA0BA8DC-0159-A808-A300-750358A6970C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x4a91000 - 0x4a95ff7 libGFXShared.dylib ??? (???) <2D32BDBF-C941-93FD-E233-F03D28DB9E94> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x4a9a000 - 0x4a9bff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x4aa0000 - 0x4aa0ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x4aa3000 - 0x4b25ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x4b5c000 - 0x4b61ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x4b69000 - 0x4b81ff7 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
    0x4b92000 - 0x4bdffeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x4bfb000 - 0x4c1dfef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x4c27000 - 0x4c37ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x4c65000 - 0x4c65ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x4c69000 - 0x4c69ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x4c72000 - 0x4c82fd7 +com.adobe.registration adobe_registration 2.0.0 (2.0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adoberegistration.framework/adoberegistration
    0x4ccc000 - 0x4cd6ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x4ceb000 - 0x4cebff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x4cee000 - 0x4cf4ff7 com.apple.DisplayServicesFW 2.2.2 (251) <6E4020F6-4DD0-F137-F226-F396807E3C3B> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x6000000 - 0x68e0ff7 com.apple.AppKit 6.6.6 (1038.29) <6F28C335-6DC2-AE0E-B79A-F256DBD0BB45> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x6d79000 - 0x6e88fe7 com.apple.WebKit 6533.17 (6533.17.8) <7489BF63-4075-335A-93DE-878547A7A4B2> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x6f9c000 - 0x6f9dff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x6fbc000 - 0x6fc7ff7 libCSync.A.dylib 543.50.0 (compatibility 64.0.0) <4FA0CE4A-BDE5-0E3D-37F0-03B41F0C2637> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x6fe6000 - 0x6fe7ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x7100000 - 0x722efe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7292000 - 0x7489feb com.apple.JavaScriptCore 6533.17 (6533.17.6) <A88FBEE4-D53E-E865-B70E-7C01E75330E4> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x74e3000 - 0x7f2eff7 com.apple.WebCore 6533.17 (6533.17.8) <CB22435A-3FAC-EAE2-3CF1-FB9D79635637> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x876f000 - 0x87a7ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x87b2000 - 0x87e6ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <0B900F26-51C1-7639-346F-24B080AEDAF3> /usr/lib/libssl.0.9.8.dylib
    0x9ffc000 - 0xa00cff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0xa017000 - 0xa08eff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0xa0a7000 - 0xa0b2ff7 com.apple.CrashReporterSupport 10.6.3 (250) <981124CA-6E89-94C5-C7E9-4E0D6CA06F1D> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x1df5a000 - 0x1df9aff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x1e100000 - 0x1e306feb com.apple.AddressBook.framework 5.0.2 (870) <3E9D6CF3-6C41-245D-5343-941A185C8384> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x1e3d8000 - 0x1e48dfe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x1e7da000 - 0x1e7ddff7 libCGXType.A.dylib 543.50.0 (compatibility 64.0.0) <3B49AED9-0DBA-9D21-F9AC-8784363AD762> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x1e7e9000 - 0x1e7f4fef +com.adobe.epic adobe_epic 2.0.0 (2.0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobeepic.framework/adobeepic
    0x1e7fa000 - 0x1e7faff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x1f8db000 - 0x1f916feb libFontRegistry.dylib ??? (???) <A102F61F-25D5-001A-20C3-56304C585072> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
    0x1fe5e000 - 0x1fe9fff7 libRIP.A.dylib 543.50.0 (compatibility 64.0.0) <8BAE1FC1-A478-F151-17C7-2D5DE470AC4F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x1feae000 - 0x1fedfff3 libTrueTypeScaler.dylib ??? (???) <7601D717-236D-8F4E-91F5-E69BB2920478> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    0x1ffc2000 - 0x1ffc8ff7 libCGXCoreImage.A.dylib 543.50.0 (compatibility 64.0.0) <94F66BA6-A4E8-63A4-1B70-EFAA4C75D668> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x20000000 - 0x20098fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x205fc000 - 0x20626ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x206a5000 - 0x206dbfff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x20884000 - 0x208a7fd6 +com.adobe.AXE8SharedExpat AdobeAXE8SharedExpat 3.3.208 (3.3.208) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/AdobeAXE8Sh aredExpat
    0x20952000 - 0x2098fff7 com.apple.CoreMedia 0.484.11 (484.11) <0346F9E5-AEFE-B751-7D85-88D156C01385> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x209aa000 - 0x209d1ff7 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
    0x20b3f000 - 0x20b6fff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x20c5d000 - 0x20cd0fff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x20d1e000 - 0x20d64ffb com.apple.CoreMediaIOServices 130.0 (1035) <F5E6F93D-6844-9FD7-8769-44503DFD5363> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x20d85000 - 0x20dfdfef com.apple.AppleVAFramework 4.9.20 (4.9.20) <D8B544CB-9E32-81C2-59BD-C5DDB66DA621> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x20e24000 - 0x20e78ffd +com.adobe.AdobeXMPCore Adobe XMP Core 4.0 -c 321 44 . 398116 (???) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeXMP.framework/AdobeXMP
    0x20e86000 - 0x20ec4ff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x214ad000 - 0x214c3fff +com.adobe.selfhealer AdobeSelfHealing version 2.1.0 (2.1.0) <1800DEE2-5DA2-42E3-B4A9-C0F92C0386D7> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealin g
    0x214d2000 - 0x214e1fc4 +com.adobe.personalization adobe_personalization 2.0.0 (2.0) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobepersonalization.framework/adobepersonalization
    0x214ea000 - 0x2152eff7 +com.adobe.adobe_pcd adobe_pcd 1.0.0 (1.0) <26ED7749-B5C3-40AA-B138-B5A3C030EE56> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/adobepcd.framework/adobepcd
    0x21533000 - 0x21540ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/asneu.framework/asneu
    0x2154a000 - 0x2161bfe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x21659000 - 0x21785ffb com.apple.MediaToolbox 0.484.11 (484.11) <B93B175A-2039-2FD2-FBE4-22C9F8C9E223> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x2181b000 - 0x2182dff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <026B8702-B0A6-1D90-BBD6-AAAD2E14810D> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x21890000 - 0x2189efe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8F5FA7F7-840D-C5EF-C6E6-E2AF7CE43CD2> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x218c5000 - 0x21aa0ff3 libType1Scaler.dylib ??? (???) <3CCADAB2-FBBF-15C9-C70C-4D26746B309E> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libType1Scaler.dylib
    0x21ad1000 - 0x21b4aff7 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
    0x21b80000 - 0x21bd6ff7 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
    0x2240b000 - 0x22479ff7 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
    0x22700000 - 0x22843fef com.apple.QTKit 7.6.6 (1742) <98ECA8E3-73F0-D21B-8B7E-8FE651E29A7F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x22ef3000 - 0x22f4bfe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x22f74000 - 0x22fcefe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x23800000 - 0x23b7ffe3 com.apple.RawCamera.bundle 3.0.3 (529) <68958A8F-F1AC-A73C-3172-BC17F18EC5FC> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x23bf6000 - 0x23dd8fff com.apple.imageKit 2.0.3 (1.0) <BF2ECA4D-FCD8-AD5D-E100-22370F2C7EE0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x23ee2000 - 0x23fb3ffc +com.lextek.onix 3.9.7.23 (Build 08/02/09) <115917DA-DD0D-3C40-17AA-3717B7C0DA23> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/Onix.framework/Onix
    0x23ffa000 - 0x240fcfef 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
    0x24163000 - 0x241a2ff7 com.apple.ImageCaptureCore 1.0.2 (1.0.2) <18E338B0-D82E-2ADC-FB9E-8909E765C41B> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x24dfc000 - 0x250f5fef com.apple.QuickTime 7.6.6 (1742) <89720F2A-F33B-FF09-3D81-F9F25A99F3EB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x251a1000 - 0x2565affb com.apple.VideoToolbox 0.484.11 (484.11) <6AB58081-F7C4-46F9-2C05-CFED9E38F0A0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x25fd1000 - 0x261fcff3 com.apple.QuartzComposer 4.1 (156.16) <578A1842-8B62-00BF-B2E8-4C0AA8E6A938> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x27119000 - 0x27283fc7 +com.adobe.Acrobat.adm 8.2.3 (8.2.3) <6701CB6B-EB6A-4C8F-8CA3-DEE8CE1947F5> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/SPPlugins/AdobeADM.bundle/Contents/MacOS/AdobeA DM
    0x40000000 - 0x400cefc0 +AdobeJP2K ??? (???) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x45000000 - 0x450ac2df +com.adobe.Preflight Preflight version 8.1.0 (241) (8.1.0 (241)) /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Preflight.acroplugin/Preflight
    0x64b00000 - 0x64b07ff3 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
    0x83e66000 - 0x83ef1fc0 +com.adobe.AcrobatPlugin.InDesignPI 8.2.3 (8.2.3) <BCB8CED6-9D34-449F-A137-D95D6133D667> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/InDesignPI.acroplugin/Contents/MacOS/InDesig nPI
    0x83f8c000 - 0x84e9eff6 +com.adobe.Acrobat.framework 8.2.3 (8.2.3) <7C890478-CE2C-4DA9-9B10-E6B6F1FA0A01> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x869f5000 - 0x86a36fca +com.adobe.AcrobatPlugin.WebLink 8.2.3 (8.2.3) <825EE5A8-E124-4BF2-82D7-184A55643030> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/WebLink.acroplugin/Contents/MacOS/WebLink
    0x86a6a000 - 0x86b0afea +com.adobe.AcrobatPlugin.Web2PDF 8.2.3 (8.2.3) <EC67E328-D535-4CC0-80AF-25C02599C579> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Web2PDF.acroplugin/Contents/MacOS/Web2PDF
    0x86cab000 - 0x86ceafc2 +com.adobe.AcrobatPlugin.Updater 8.2.3 (8.2.3) <8FE60C83-15FF-4FD3-B1F2-7FF47F259493> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Updater.acroplugin/Contents/MacOS/Updater
    0x86d39000 - 0x86f3faaf +com.adobe.AcrobatPlugin.TouchUp 8.2.3 (8.2.3) <33B214BC-0E2C-45D7-9EBA-85783F18F6B8> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/TouchUp.acroplugin/Contents/MacOS/TouchUp
    0x872f5000 - 0x87316fdb +com.adobe.AcrobatPlugin.TablePicker 8.2.3 (8.2.3) <C509868E-AA2B-4AEA-8B6C-1AC12CC43AED> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/TablePicker.acroplugin/Contents/MacOS/TableP icker
    0x87361000 - 0x87436fe7 +com.adobe.AcrobatPlugin.Spelling 8.2.3 (8.2.3) <C2985CAC-B601-4321-B7D2-6BF6D5C889D3> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Spelling.acroplugin/Contents/MacOS/Spelling
    0x87567000 - 0x87583fdf +com.adobe.AcrobatPlugin.SendMail 8.2.3 (8.2.3) <9A344B0C-D97D-42A1-9F18-2CAC6962DD60> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/SendMail.acroplugin/Contents/MacOS/SendMail
    0x875bd000 - 0x87622fef +com.adobe.AcrobatPlugin.Search 8.2.3 (8.2.3) <B289AD1D-D296-4E0E-9C7C-32F37F185CB1> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Search.acroplugin/Contents/MacOS/Search
    0x876c4000 - 0x8778bfda +com.adobe.AcrobatPlugin.Scan 8.2.3 (8.2.3) <F45A527B-65CC-4DA7-88F3-EDE87B444AA7> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Scan.acroplugin/Contents/MacOS/Scan
    0x8782d000 - 0x8788f2ff +com.adobe.AcrobatPlugin.SaveAsXML 8.2.3 (8.2.3) <B688F10E-E40E-400E-B505-76C2A514F31F> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/SaveAsXML.acroplugin/Contents/MacOS/SaveAsXM L
    0x879bd000 - 0x87a19fea +com.adobe.AcrobatPlugin.SaveAsRTF 8.2.3 (8.2.3) <BDE07228-C875-4691-8C12-F2CEC7FB77CF> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/SaveAsRTF.acroplugin/Contents/MacOS/SaveAsRT F
    0x87aba000 - 0x87b1bfdf +com.adobe.AcrobatPlugin.Reflow 8.2.3 (8.2.3) <CADECE8D-266F-43E8-8572-ADEFFC7B6A8D> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Reflow.acroplugin/Contents/MacOS/Reflow
    0x87bd1000 - 0x87be6fd0 +com.adobe.AcrobatPlugin.ReadOutLoud 8.2.3 (8.2.3) <D6F7BF76-D5BB-412C-B104-FBE8C401291E> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/ReadOutLoud.acroplugin/Contents/MacOS/ReadOu tLoud
    0x87c12000 - 0x88283268 +com.adobe.AcrobatPlugin.PPKLite 8.2.3 (8.2.3) <4D08C92B-FD01-46CD-86DD-9B9A21A3F942> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/PPKLite.acroplugin/Contents/MacOS/PPKLite
    0x88f4f000 - 0x88fd5feb +com.adobe.AcrobatPlugin.PDDom 8.2.3 (8.2.3) <AE46719F-C462-41F4-B7AA-4168857784EA> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/PDDom.acroplugin/Contents/MacOS/PDDom
    0x89102000 - 0x8912bfdf +com.adobe.AcrobatPlugin.PaperCapture 8.2.3 (8.2.3) <A37A5AE1-51A5-4E8E-BF95-CB14B32B7CD8> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/PaperCapture.acroplugin/Contents/MacOS/Paper Capture
    0x8916e000 - 0x89321fc6 +com.adobe.AcrobatPlugin.Multimedia 8.2.3 (8.2.3) <94466D2F-3DAF-4D6C-A761-C3CFCB265A0D> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Multimedia.acroplugin/Contents/MacOS/Multime dia
    0x897a8000 - 0x89b6600e +com.adobe.AcrobatPlugin.MakeAccessible 8.2.3 (8.2.3) <D22D5839-E23C-451F-B00E-E51577C0A6B1> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/MakeAccessible.acroplugin/Contents/MacOS/Mak eAccessible
    0x8a070000 - 0x8a136fe7 +com.adobe.AcrobatPlugin.JDFProdDef 8.2.3 (8.2.3) <39F772FD-5406-47BC-AB19-B074198ADF5E> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/JDFProdDef.acroplugin/Contents/MacOS/JDFProd Def
    0x8a2ac000 - 0x8a38b9c3 +com.adobe.AcrobatPlugin.ImageConversion 8.2.3 (8.2.3) <46212A0C-AC61-4A0C-9C78-702A2C1A3032> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/ImageConversion.acroplugin/Contents/MacOS/Im ageConversion
    0x8a451000 - 0x8a740feb +com.adobe.AcrobatPlugin.HTML2PDF 8.2.3 (8.2.3) <E123FA5E-D8DF-4D4F-8BE2-5324C2589FCF> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/HTML2PDF.acroplugin/Contents/MacOS/HTML2PDF
    0x8b128000 - 0x8b130fdf +com.adobe.AcrobatPlugin.HLS 8.2.3 (8.2.3) <24035BDE-AA5E-4EEA-9698-9F149D4B58BE> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/HLS.acroplugin/Contents/MacOS/HLS
    0x8b140000 - 0x8b16afef +com.adobe.AcrobatPlugin.EWH 8.2.3 (8.2.3) <DD26BD00-DB5D-4FE1-AFF6-3AC157A68AA1> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/EWH.acroplugin/Contents/MacOS/EWH
    0x8b1b4000 - 0x8b354fc3 +com.adobe.AcrobatPlugin.EScript 8.2.3 (8.2.3) <765D2923-0654-4DF6-B913-429B7D0C6FEE> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/EScript.acroplugin/Contents/MacOS/EScript
    0x8b57a000 - 0x8b5a6ff7 +com.adobe.AcrobatPlugin.EFS 8.2.3 (8.2.3) <CBBA7095-F65F-406B-82E0-C1BA7C49B53F> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/EFS.acroplugin/Contents/MacOS/EFS
    0x8b61c000 - 0x8b9a5fd8 +com.adobe.AcrobatPlugin.Editor 8.2.3 (8.2.3) <117F9269-CEC0-47EF-9AE8-2D308CF5FB1E> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Editor.acroplugin/Contents/MacOS/Editor
    0x8c18d000 - 0x8c196fc7 +com.adobe.AcrobatPlugin.eBook 8.2.3 (8.2.3) <61C4AEA3-FFD1-4612-A04D-C605FC235F3C> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/eBook.acroplugin/Contents/MacOS/eBook
    0x8c1b0000 - 0x8c1cefff +com.adobe.AcrobatPlugin.DVA 8.2.3 (8.2.3) <0014A1DF-BAE0-43D6-8EEE-F28D48EE6C90> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/DVA.acroplugin/Contents/MacOS/DVA
    0x8c1f6000 - 0x8c206fcf +com.adobe.AcrobatPlugin.Distiller 8.2.3 (8.2.3) <07854D85-8545-4895-866E-5DCA86B96848> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/DistillerPI.acroplugin/Contents/MacOS/Distil lerPI
    0x8c224000 - 0x8c366fee +com.adobe.AcrobatPlugin.DigSig 8.2.3 (8.2.3) <4413E161-A9DD-4C60-83A7-C18E67151FAD> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/DigSig.acroplugin/Contents/MacOS/DigSig
    0x8c563000 - 0x8c9587bb +com.adobe.AcrobatPlugin.Comments 8.2.3 (8.2.3) <F0ABA260-8A57-4D89-A66D-678FAEDD5C79> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Comments.acroplugin/Contents/MacOS/Comments
    0x8cfe9000 - 0x8d06eff2 +com.adobe.AcrobatPlugin.Checkers 8.2.3 (8.2.3) <D93703BB-2235-4123-8192-85122CB2CEC5> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Checkers.acroplugin/Contents/MacOS/Checkers
    0x8d1df000 - 0x8d21efcf +com.adobe.AcrobatPlugin.Catalog 8.2.3 (8.2.3) <000E3BE2-4CB3-4C5B-8E93-7523B2DA3C98> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Catalog.acroplugin/Contents/MacOS/Catalog
    0x8d28a000 - 0x8dba684a +com.adobe.AcrobatPlugin.AcroForm 8.2.3 (8.2.3) <FB1FB3D3-7342-4C84-A16D-2B61A4D87389> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/AcroForm.acroplugin/Contents/MacOS/AcroForm
    0x8e956000 - 0x8e99dfeb +com.adobe.AcrobatPlugin.Accessibility 8.2.3 (8.2.3) <4CF7E25E-DF8D-49DF-9C06-AE61BC80C57D> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Plug-ins/Accessibility.acroplugin/Contents/MacOS/Acce ssibility
    0x8ea27000 - 0x8ec89027 +AdobeCoolType ??? (???) <5A0D72CD-7B19-4FDE-99A6-A7E31E5167BE> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCo olType
    0x8efdd000 - 0x8eff6ff7 +AdobeBIB ??? (???) <69CFF354-F3E2-474A-B599-C23B977A4231> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x8f03c000 - 0x8f49dfc7 +AdobeAGM ??? (???) <16438AF9-6C32-43BF-BF5A-0B9F452E1DBA> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x8fc37000 - 0x8fd2dff7 +AdobeACE ??? (???) <7E83CB44-8B44-4CAA-968C-FC71431F8786> /Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <12C58901-CCF3-4E8E-30CA-92A10CD55DF1> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <7FFF4AFA-6522-C7D5-760F-A8F13D6EF032> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xbb100000 - 0xbb103fe7 libLatinSuppConverter.dylib 49.0.0 (compatibility 1.0.0) <D7E95532-C232-C492-6670-49FF18E6DE45> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
    0xfa100000 - 0xfa192fe3 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
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <3441F338-2218-6D36-3F95-3A16FBF6713D> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005D.B00, 4 processors, Dual-Core Intel Xeon, 2.66 GHz, 7 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    Bluetooth: Version 2.3.3f8, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-1
    Serial ATA Device: WDC WD2500AAJS-41RYA0, 232.89 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-112D, 45.2 MB
    USB Device: iPhone, 0x05ac (Apple Inc.), 0x1292, 0xfd200000
    USB Device: Keyboard Hub, 0x05ac (Apple Inc.), 0x1006, 0xfd400000
    USB Device: Apple Keyboard, 0x05ac (Apple Inc.), 0x0220, 0xfd420000
    USB Device: HL-4070CDW, 0x04f9 (Brother Industries, Ltd.), 0x0030, 0xfd500000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    USB Device: Kensington USB/PS2 Orbit, 0x047d (Kensington), 0x1022, 0x3d100000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: unknown_device, Unknown

    here it is
    Memory Slots:
    ECC: Enabled
    DIMM Riser A/DIMM 1:
    Size: 1 GB
    Type: DDR2 FB-DIMM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x0000
    Part Number: 0x000000000000000000000000000000000000
    Serial Number: 0xFFFFFFFF
    DIMM Riser A/DIMM 2:
    Size: 1 GB
    Type: DDR2 FB-DIMM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x0000
    Part Number: 0x000000000000000000000000000000000000
    Serial Number: 0xFFFFFFFF
    DIMM Riser B/DIMM 1:
    Size: 512 MB
    Type: DDR2 FB-DIMM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x80AD
    Part Number: 0x48594D5035363441373243503844332D5935
    Serial Number: 0x0576150C
    DIMM Riser B/DIMM 2:
    Size: 512 MB
    Type: DDR2 FB-DIMM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x80AD
    Part Number: 0x48594D5035363441373243503844332D5935
    Serial Number: 0x0576160C
    DIMM Riser A/DIMM 3:
    Size: Empty
    Type: Empty
    Speed: Empty
    Status: Empty
    Manufacturer: Empty
    Part Number: Empty
    Serial Number: Empty
    DIMM Riser A/DIMM 4:
    Size: Empty
    Type: Empty
    Speed: Empty
    Status: Empty
    Manufacturer: Empty
    Part Number: Empty
    Serial Number: Empty
    DIMM Riser B/DIMM 3:
    Size: 2 GB
    Type: DDR2 FB-DIMM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x0D9B
    Part Number: 0x000000000000000000000000000000000000
    Serial Number: 0x00000000
    DIMM Riser B/DIMM 4:
    Size: 2 GB
    Type: DDR2 FB-DIMM
    Speed: 667 MHz
    Status: OK
    Manufacturer: 0x0D9B
    Part Number: 0x000000000000000000000000000000000000
    Serial Number: 0x00000000

Maybe you are looking for

  • How to subtract ith position of one array from the ith position of another

    Hi, everyone, In my program, I subract one array from another. It should be like X(i) - Y(i) Can someone explain to me how I can make sure that I'm subracting ith value of array 2 from the ith value of array one?  Not , for example, X(i)- Y(i+1)? Tha

  • How can I automatically send sms?

    I've installed Nokia Text Message Editor and it works. But I would make an application that can send messages automatically, or by command (Maybe MS-DOS). Do anyone have experience with it? Thank Keesonlyne Message Edited by keesonlyne on 17-Nov-2008

  • Modal dialog question

    I'm working with files that have their assets managed via a DAM that wants the user to log in whenever a file is opened. This log-in window doesn't respect the "script preferences/never interact" direction and pops up with every new file opened in a

  • The developer 3 crashed,when i exported the data out xls ,why?

    i have been reinstall office and developer 3,but it still no echo. why? thanks.

  • IPhone 3 will not come out of recovery mode

    I currently have a iPhone 3 that I would like to give my 10 year old son. I have an error coming up in recovery mode stating that iTunes has detected my iPhone is in recovery mode and that i must restore the iPhone it can be used with iTunes. When I