Impdp Stuck

Database 11.2.0.3
Red Hat Enterprise 6.4
I am running a datapump job and it appears to be stuck. It sits at importing a table constraint.
I found this query in another post to check the status:
SELECT
SUBSTR(sql_text, INSTR(sql_text,'INTO "'),30) table_name,
to_char(LAST_ACTIVE_TIME,'MM/DD/YYYY HH24:MI:SS')
, rows_processed
, ROUND( (sysdate-TO_DATE(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60,1) minutes
, TRUNC(rows_processed/((sysdate-to_date(first_load_time,'yyyy-mm-dd hh24:mi:ss'))*24*60)) rows_per_minute
FROM
sys.v_$sqlarea
WHERE
sql_text like 'INSERT %INTO "%'
AND command_type = 2
AND open_versions > 0;
When I run the query it doesn't show that the job is doing anything. I am also checking OEM and it doesn't show anything for blocks. It shows waits for the session but it says the Wait Time is 0ms.
Here is what I see in the terminal:
Worker 1 Status:
  Process Name: DW00
  State: EXECUTING
  Object Schema: TCFK2
  Object Name: RISK_INS_SELL_PRD_ID_FK
  Object Type: SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
  Completed Objects: 1,120
  Worker Parallelism: 1
This is the command I ran:
impdp system/*****@devb full=Y STATUS=1 PARALLEL=4 DIRECTORY=imp dumpfile=EXP_01.DMP, EXP_02.DMP, EXP_03.DMP, EXP_04.DMP logfile=impdevb.log TABLE_EXISTS_ACTION=replace
I ran the same command a few days ago and the whole process only took 1 hour to complete. It has now been over 3 hours.
What else can I check to see if the import is working?

Hi,
Look at v$session_wait for your session and see what events it is waiting for - this might help work out whats going wrong.
If it's on the REF CONSTRAINT step then it's should just be comparing values in the FK with those in the PK - are all the indexes present for it to be able to do that quickly?
Regards,
Harry

Similar Messages

  • IMPDP stuck at 99%

    I have two Data Pump imports running that have been at 99% now for over an hour. Everything looks good, but they simply are not finishing the job. The row count has not changed in more than an hour now. No errors or trace generation in the alert log. Everything has plenty of space including UNDO and TEMP. I can, and will, open an SR, but I cant find anything in the forums or the Metalink Notes about this type of situation so throwing it to the community at large. This import completed the first table without an issue.
    Job: SYS_IMPORT_TABLE_01
    Owner: SYSTEM
    Operation: IMPORT
    Creator Privs: TRUE
    GUID: CFB5FB7B039B32FAE044001B21818314
    Start Time: Friday, 30 November, 2012 11:48:48
    Mode: TABLE
    Instance: rnrcp21
    Max Parallelism: 1
    EXPORT Job Parameters:
    CLIENT_COMMAND SERVICE_ER/******** parfile=exp_data010.par
    ESTIMATE STATISTICS
    FLASHBACK_SCN INCLUDE_METADATA 0
    IMPORT Job Parameters:
    Parameter Name Parameter Value:
    CLIENT_COMMAND system/******** parfile=imp010_8.par
    State: EXECUTING
    Bytes Processed: 20,576,810,208
    Percent Done: 2
    Current Parallelism: 1
    Job Error Count: 0
    Dump File: /ggdata/load/dp_data_010e%u.dmp
    Dump File: /ggdata/load/dp_data_010e01.dmp
    Dump File: /ggdata/load/dp_data_010e02.dmp
    Dump File: /ggdata/load/dp_data_010e03.dmp
    Dump File: /ggdata/load/dp_data_010e04.dmp
    Dump File: /ggdata/load/dp_data_010e05.dmp
    Dump File: /ggdata/load/dp_data_010e06.dmp
    Worker 1 Status:
    Process Name: DW00
    State: EXECUTING
    Object Schema: ORDER1
    Object Name: OO_LINE_SHIPMENT
    Object Type: SCHEMA_EXPORT/TABLE/TABLE_DATA
    Completed Objects: 2
    Completed Rows: 136,395,047
    Completed Bytes: 18,577,233,800
    Percent Done: 99
    Worker Parallelism: 1

    You can also run this query to see what data is left to import:
    select sum(dump_orig_length), processing_state
    from "SYSTEM"."SYS_IMPORT_FULL_01“ -- < your master table /job name goes here
    where process_order > 0 and duplicate = 0 and
    object_type = 'TABLE_DATA‘
    group by processing_state;
    SUM(DUMP_ORIG_LENGTH) P
    13408128 W -- already imported
    2525400 R -- to be imported
    24944 X -- excluded
    Rows with the 'W' state have already been imported.
    Rows with the 'R' state still need to be imported.
    Rows with the 'X' state have been excluded from the job (through filters and other things)
    Hope this helps.
    Dean

  • Taking impdp using network_link

    HI PPl,
    Am stuck in a very difficult situation..
    Can you please tell me is it possible to take an import from a database which is open in READ-ONLY mode,
    and i am going to use the impdp utility and network_link (syntax) and connect to readonly database and to carry out the import..
    Ples help as we want to do production testing.

    Zombie,
    English is probably not your first language.
    I say this because you
    export from
    and
    import into
    Import from a read-only database just doesn't make sense.
    Yes, you should be able to export from a read-only database
    No, you shouldn't be able to import into a read-only database.
    The network link doesn't matter in this regard.
    Can you please explain further?
    Sybrand Bakker
    Senior Oracle DBA

  • Impdp too slow

    I exported data using:
    expdp system/***@*** directory=dp_t24 dumpfile=t24_%U.dmp schemas=t24 exlude=views,statustics parallel=8
    Export has been done in IBM P5 Server with AIX 5.3 and Oracle 10.2.0.3
    Database size is 500 gb
    and dump size 161 gb
    Expdp took 6 hours
    I am importing:
    impdp system/****@*** directory=dp_t24 dumpfile=t24_%U.dmp schemas=t24 parallel=8
    Import has been taken 24 hours but still not completed.
    This is 8-core CPU machine wit RAM 32GB. But cpu parallelism is not working.
    ANy suggesiton?

    Hi,
    You say that parallel is not working. Please remember that parallel is only available for loading data. The only metatdata object that is created in parallel is package bodies. Everything else is done serially. So, what you can expect is:
    1. all of the objects that are needed to insert data into tables, like schema, object_types, grants, and the tables themselves will have to be
    created and this is serially. You can't create a table if the schema is not created, you can't create a table if the type is not created, ect.
    2. Once all of the tables are created, then the data will load in parallel. In some cases you will see multiple processes loading data, in other
    cases you will see a single process loading data, but it is using pq slaves. This depends on what the table is, whether it existed before the
    import was done or not, and what types make up the table.
    3. Once all of the data is loaded, the remaining objects are created serially again. You can't create index statistics, while you are creating the
    index.
    Maybe your job is stuck on something. You could always attach to the job from anohter window and get status to see what object it is working on. This is how you do this:
    impdp user/password attach='job_user.job_name'
    impdp> status
    The job_user.job_name is the name of the job that you would have seen when you started the job. The job_user is always the schema you logged in as when you started the job. The job_name is either the job_name you specified when you started the job, or a unique one that the datapump code gave it. It would look something like:
    SYS_IMPORT_SCHEMA_01
    So:
    impdp user/password attach=user.sys_import_schema_01
    Let us know what is currently being worked on, and see if this changes in a couple of seconds/minutes.
    Thanks
    Dean

  • Adobe Cloud membership - I am stuck in the loop of Licensing VERY Frustrating!!!

    I have an Adobe Cloud membership - I am stuck in the loop of Licensing as well VERY Frustrating - I have a project due and have been troubleshooting for days -
    Un Installing - Re installing - NIGHTMARE  - Please someone help me!!! Thanks in advance -

    What happens when you enter your Adobe ID tied to your subscription?

  • Adobe Cloud Update stuck at 99%

    My Adobe Cloud update for After Effects CC 2014 has been stuck at 99% for about 20 minutes. I have a job I need to get out right away. Anyone have any ideas? Would really appreciate any help... thank you!

    After Effects
    http://blogs.adobe.com/crawlspace/2012/07/photoshop-basic-troubleshooting-steps-to-fix-mos t-issues.html#TroubleshootUpda…
    Use the CC Cleaner Tool to solve installation problems | CC, CS3-CS6

  • Application stuck under menu toolbar

    An application I'm running (Filezilla FTP client) is stuck under the mac menu toolbar. I can't grab the toolbar of the application to move it or access what I need to access. I've researched this issue and other people have had the same problem, but none of their solutions have worked for me. I've tried changing the resolution of my screen, disconnecting my dual monitor, "zoom" is not available in the program I'm working with, and I've tried a multitude of expose/spaces/random key commands to no avail. Any other ideas?
    Using 10.9.5

    I can't see from your screenshot if there available screen space around the window. You could try dragging the window down from one of the bottom edge - making it smaller first if necessary (when the cursor is near the edge it has double arrow that indicates changing the window size), then make sure that your mouse is enough inside the window that the cursor is a normal one-arrow and drag it down. Repeat if necessary until the title bar reappears.

  • Need help with Sharepoint foundation web application stuck on "STOPPING" error job-service-instance-GUID Number already exists

    Hi All,
         I cant get to stop SharePoint foundation web app service. Its stuck on status stopping
    I have tried the following:
    reset IIS
    restarted the Timer Service
    When I try to use powershell command to stop I get the following error:
    Can anyone who went through this help PLEASE
    Stop-SPServiceInstance : An object of the type
    Microsoft.SharePoint.Administration.SPServiceInstanceJobDefinition named
    "job-service-instance-1ff39eb2-12d2-457d-a749-265e350eb1b1" already exists
    under the parent Microsoft.SharePoint.Administration.SPTimerService named
    "SPTimerV4". Rename your object or delete the existing object.
    At line:1 char:127
    + ... pplication"} | Stop-SPServiceInstance
    + ~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo : InvalidData: (Microsoft.Share...ServiceInstance:
    SPCmdletStopServiceInstance) [Stop-SPServiceInstance], SPDuplicateObjectEx
    ception
    + FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletStopServ
    iceInstance

    Hi,
    It seems that the issue is in the timer job definition for executing this operation.
    My suggestion is to start the service again and delete the job definition from the error and again try to stop it.
    This might be helpful:
    http://sharepoint.stackexchange.com/questions/22368/is-there-a-powershell-cmdlet-to-delete-a-timer-job 
    I had a lot of issues in the past when try to stop this instance after the Web apps are provisioned.
    As general rule now If I have multi-server Farm topology that has servers that should not serve Web App requests I turn off the service prior to provisioning any Web Apps in the Farm. 
    BR,
    Ivan

  • Help !!! freeze and stuck on grey screen, difficult to reboot, here is my EtreCheck report

    Help !!! I experienced more and more issues since I upgraded to mavericks and i brought my MBP 15" (from 2011, out of warranty) to the Apple genius bar a couple of days after my computer started to freeze and crash on a grey screen with less and less possibility to reboot it (tried all advices i could find on the forums to reboot in other ways, etc. ). The overnight tests at Apple gave nothing, they just decided to reinitiate the software and concluded that the problem was solved.
    But the problem happened again: when i reloaded my backup from Time Machine, i could run the whole process till the end then when I was asked to restart, I couldn’t open the finder, my screen was stuck on a light grey.
    I could reboot it (always in maintaining the off button to stop the machine or in using the single mode) but it’s non stable, after too many manipulations, the screen freezes or divides in 2 parts with lines, etc. And I have to try again different ways to reboot…
    I took a new appointment to the Apple Genius bar, but in the mean time, I tried to repair the authorizations, and I have to say that the list is really long, even if I did the operation more 3 times…
    I think there is a software conflict somewhere and find the possibility to check the system with EtreCheck (thanks! I will also bring this paper to the Genius bar technician).
    Please, would there be someone who could read this information and gives me some advices and opinion on what could be problematic, what to do etc.
    In end, what is very weird to me:
    I could read on this forum that “startup items” are no more necessary since OS 10.4. I tried to delete the ones that appear here in library/startupitems, and found another one which is not mentioned in this EtreCheck list : startouc
    Also when I tried to delete those items, it was refused by the finder with the message saying that this items are in use…
    Another point: I uninstalled the application Chiavetta Internet 42 a week ago when I started to have the problems. I was in Italy and this is a usb key with pin for internet. At the moment thought about a possible conflict with the key and deleted every item concerning this installation. This is because I don’t understand that it appears now in the “User login Items”.
    Thank you so much in advance
    Here is the EtreCheck report:
    Hardware Information:
                MacBook Pro (15-inch, Early 2011)
                MacBook Pro - model: MacBookPro8,2
                1 2 GHz Intel Core i7 CPU: 4 cores
                8 GB RAM
    Video Information:
                Intel HD Graphics 3000 - VRAM: 512 MB
                AMD Radeon HD 6490M - VRAM: 256 MB
    System Software:
                OS X 10.9.2 (13C1021) - Uptime: 0 days 1:42:38
    Disk Information:
                Hitachi HTS545050B9A302 disk0 : (500,11 GB)
                            EFI (disk0s1) <not mounted>: 209,7 MB
                      Macintosh HD (disk0s2) / [Startup]: 499,25 GB (219,23 GB free)
                            Recovery HD (disk0s3) <not mounted>: 650 MB
                MATSHITADVD-R   UJ-8A8 
    USB Information:
                Apple Inc. FaceTime HD Camera (Built-in)
                Apple Inc. BRCM2070 Hub
                            Apple Inc. Bluetooth USB Host Controller
                Apple Inc. Apple Internal Keyboard / Trackpad
                Apple Computer, Inc. IR Receiver
    Thunderbolt Information:
                Apple Inc. thunderbolt_bus
    Gatekeeper:
                Mac App Store and identified developers
    Kernel Extensions:
                [not loaded]            com.MBB.driver.MBBACMData (5.00.02) Support
                [not loaded]            com.MBB.driver.MBBActivateDriver (1.0.14) Support
                [not loaded]            com.MBB.driver.MBBEthernetData (2.00.05) Support
                [not loaded]            com.palm.ClassicNotSeizeDriver (3.1) Support
                [not loaded]            com.wdc.driver.1394HP (1.0.9) Support
                [not loaded]            com.wdc.driver.USBHP (1.0.11) Support
    Launch Daemons:
                [failed]            com.google.GoogleML.plist Support
                [failed]            com.google.keystone.daemon.plist Support
    Launch Agents:
                [loaded]            com.hp.help.tocgenerator.plist Support
    User Launch Agents:
                [loaded]            com.iLike.Agent.plist Support
    User Login Items:
                Transport Monitor
                Firefox
                My Day
                Chiavetta Internet 42
                GoogleSoftwareUpdateAgent
    Internet Plug-ins:
                Unity Web Player: Version: UnityPlayer version 4.2.1f4 - SDK 10.6 Support
                QuickTime Plugin: Version: 7.7.3
                Default Browser: Version: 537 - SDK 10.9
                OfficeLiveBrowserPlugin: Version: 12.3.6 Support
                Google Earth Web Plug-in: Version: 7.1 Support
                Mozillaplug: Version: 1.0
                Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
                DirectorShockwave: Version: 12.0.5r146 - SDK 10.6 Support
                iPhotoPhotocast: Version: 7.0 - SDK 10.7
    Safari Extensions:
                Amazon Shopping Assistant: Version: 1.1
                Searchme: Version: 1.3
                Ebay Shopping Assistant: Version: 1.1
    Audio Plug-ins:
                BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
                AirPlay: Version: 2.0 - SDK 10.9
                AppleAVBAudio: Version: 203.2 - SDK 10.9
                iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
                Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
                iLike: Version: 1.0 Support
                PPC Bundle: Version: (null) Support
                iLike Bundle: Version: (null) Support
                Tiger Bundle: Version: (null) Support
                TuneUp Visualizer: Version: (null) Support
    3rd Party Preference Panes:
                None
    Time Machine:
                Skip System Files: NO
                Mobile backups: OFF
                Auto backup: NO - Auto backup turned off
                Volumes being backed up:
                            Macintosh HD: Disk size: 464.96 GB Disk used: 260.79 GB
                Destinations:
                            EVE TIME MACHINE & PHOTOS [Local] (Last used)
                            Total size: 2 
                            Total number of backups: 22
                            Oldest backup: 2013-11-19 10:49:38 +0000
                            Last backup: 2014-05-07 09:35:48 +0000
                            Size of backup disk: Excellent
                                        Backup size 2  > (Disk size 464.96 GB X 3)
                            copy Time Machine + photos (22 Nov 2013) [Local]
                            Total size: 931.36 GB
                            Total number of backups: 5
                            Oldest backup: 2013-11-23 04:29:31 +0000
                            Last backup: 2014-03-26 20:03:02 +0000
                            Size of backup disk: Adequate
                                        Backup size 931.36 GB > (Disk used 260.79 GB X 3)
                Time Machine details may not be accurate.
                All volumes being backed up may not be listed.
    Top Processes by CPU:
                     5%            firefox
                     3%            WindowServer
                     0%            Microsoft Word
                     0%            launchservicesd
                     0%            fontd
    Top Processes by Memory:
                606 MB            com.apple.IconServicesAgent
                401 MB            firefox
                238 MB            Finder
                221 MB            mds_stores
                123 MB            Microsoft Word
    Virtual Memory Information:
                3.68 GB            Free RAM
                2.57 GB            Active RAM
                492 MB            Inactive RAM
                1.26 GB            Wired RAM
                2.42 GB            Page-ins
                0 B            Page-outs

    Hey thank you! I tried to send you a first answer but Firefox blocked... Again thank you for your advice and the detailed process to follow, hope it can help! - Also sorry for my English which is not my primary language.
    Also don't know how to edit the Anonymous UUID... is it in the apple discussion account?
    Here is what i found in Console > Diagnostic and usage information > System diagnostic report:
    there were 4 lines as titles, and after Firefox crash there are 5 now.
    I will send you the content for each of them, but in a new message each time in case it freezes again.
    1st line starts with diskarbitrationd, ends with .shutdownStall
    content:
    Date/Time:  
    2014-05-12 18:05:15 -0700
    OS Version: 
    10.9.2 (Build 13C1021)
    Architecture:
    x86_64
    Report Version:  18
    Command:    
    No Target
    Path:       
    No Target
    Version:    
    Parent:     
    UNKNOWN PROCESS [0]
    PID:        
    0
    Event:      
    shutdown stall
    Duration:   
    12.05s (sampling started after 2 seconds)
    Steps:      
    101 (100ms sampling interval)
    Hardware model:  MacBookPro8,2
    Active cpus:
    8
    Fan speed:  
    4033 rpm (-334)
    Free pages: 
    1153467 pages (-455)
    Pageins:    
    5 pages
    Pageouts:   
    0 pages
    Swapins:    
    0 pages
    Swapouts:   
    0 pages
    Process:    
    diskarbitrationd [21]
    Path:       
    /usr/libexec/diskarbitrationd
    Architecture:
    x86_64
    Parent:     
    launchd [1]
    UID:        
    0
    Sudden Term:
    Dirty
    Task size:  
    577 pages (-6)
    Importance: 
    Adaptive, Donating
    Timers:     
    Coalesced
      Thread 0x13d 
    DispatchQueue 1     
    priority 31   
      101 start + 1 (libdyld.dylib) [0x7fff8c4db5fd]
    101 ??? (diskarbitrationd + 28877) [0x10e56a0cd]
    101 CFRunLoopRun + 97 (CoreFoundation) [0x7fff8c3da811]
    101 CFRunLoopRunSpecific + 309 (CoreFoundation) [0x7fff8c3250b5]
    101 __CFRunLoopRun + 1161 (CoreFoundation) [0x7fff8c325779]
    101 __CFRunLoopServiceMachPort + 181 (CoreFoundation) [0x7fff8c326155]
    101 mach_msg_trap + 10 (libsystem_kernel.dylib) [0x7fff8f270a1a]
    *101 ??? (mach_kernel + 92160) [0xffffff8000216800]
      Thread 0x146 
    DispatchQueue 2     
    priority 33   
      101 _dispatch_mgr_thread + 52 (libdispatch.dylib) [0x7fff8ab9c152]
    101 kevent64 + 10 (libsystem_kernel.dylib) [0x7fff8f275662]
    *101 ??? (mach_kernel + 3949760) [0xffffff80005c44c0]
      Thread 0x15ac
    priority 31   
    *101 wq_unsuspend_continue + 0 (pthread) [0xffffff7f80b747c4]
      Thread 0x14e2
    priority 29   
      80 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff93750fb9]
    80 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8f274e6a]
    *80 wq_unpark_continue + 0 (pthread) [0xffffff7f80b746ae]
      Thread 0x1569
    priority 0    
      79 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff93750fb9]
    79 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8f274e6a]
    *79 wq_unpark_continue + 0 (pthread) [0xffffff7f80b746ae]
      Thread 0x15a6
    priority 31   
      71 start_wqthread + 13 (libsystem_pthread.dylib) [0x7fff93750fb9]
    71 __workq_kernreturn + 10 (libsystem_kernel.dylib) [0x7fff8f274e6a]
    *71 wq_unpark_continue + 0 (pthread) [0xffffff7f80b746ae]
      Binary Images:
    0x10e563000 -   
    0x10e578fff  diskarbitrationd (266) <94F10D52-A866-34ED-B278-873B4B2E0C7E> /usr/libexec/diskarbitrationd
    0x7fff8ab99000 -
    0x7fff8abb3fff  libdispatch.dylib (339.90.1) <F3CBFE1B-FCE8-3F33-A53D-9092AB382DBB> /usr/lib/system/libdispatch.dylib
    0x7fff8c2b5000 -
    0x7fff8c49afff  com.apple.CoreFoundation 6.9 (855.16) <617B8A7B-FAB2-3271-A09B-C542E351C532> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x7fff8c4d8000 -
    0x7fff8c4dbff7  libdyld.dylib (239.4) <CF03004F-58E4-3BB6-B3FD-BE4E05F128A0> /usr/lib/system/libdyld.dylib
    0x7fff8f25f000 -
    0x7fff8f27bff7  libsystem_kernel.dylib (2422.90.20) <20E00C54-9222-359F-BD98-CB79ABED769A> /usr/lib/system/libsystem_kernel.dylib
    0x7fff9374b000 -
    0x7fff93752ff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
    *0xffffff7f80b71000 - 0xffffff7f80b78fff  com.apple.kec.pthread 1.0 (1) <619F6A5D-FFA2-3B59-9993-958FD7154B83> /System/Library/Extensions/pthread.kext/Contents/MacOS/pthread
    *0xffffff8000200000 - 0xffffff8000200000  mach_kernel <9FEA8EDC-B629-3ED2-A1A3-6521A1885953> /mach_kernel
    Process:    
    fsck_hfs [267]
    Path:       
    /System/Library/Filesystems/hfs.fs/Contents/Resources/fsck_hfs
    Architecture:
    x86_64
    Parent:     
    diskarbitrationd [21]
    Responsible:
    diskarbitrationd [21]
    UID:        
    0
    Task size:  
    206770 pages
    CPU Time:   
    10.043s
    Importance: 
    Adaptive, Donating
      Thread 0x968 
    DispatchQueue 1     
    priority 31    
    cpu time  10.043s
      101 start + 1 (libdyld.dylib) [0x7fff8c4db5fd]
    101 ??? (fsck_hfs + 7233) [0x106fe7c41]
    101 ??? (fsck_hfs + 76504) [0x106ff8ad8]
    101 ??? (fsck_hfs + 79339) [0x106ff95eb]
    101 ??? (fsck_hfs + 119757) [0x1070033cd]
    42  ??? (fsck_hfs + 135082) [0x107006faa]
    42  ??? (fsck_hfs + 73083) [0x106ff7d7b]
    38  ??? (fsck_hfs + 33605) [0x106fee345]
    24  ??? (fsck_hfs + 43420) [0x106ff099c]
    23  ??? (fsck_hfs + 40781) [0x106feff4d]
    6   ??? (fsck_hfs + 28484) [0x106fecf44]
    *6   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *6   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *6   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *6   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *6   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    3   ??? (fsck_hfs + 29225) [0x106fed229]
    *3   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *3   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *3   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *3   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *3   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 29241) [0x106fed239]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28343) [0x106feceb7]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28442) [0x106fecf1a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28427) [0x106fecf0b]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28390) [0x106fecee6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29203) [0x106fed213]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28331) [0x106feceab]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28938) [0x106fed10a]
    1   ??? (fsck_hfs + 26336) [0x106fec6e0]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28490) [0x106fecf4a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 30064) [0x106fed570]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28519) [0x106fecf67]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28406) [0x106fecef6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 40680) [0x106fefee8]
    1   ??? (fsck_hfs + 32482) [0x106fedee2]
    1   ??? (fsck_hfs + 17431) [0x106fea417]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    14  ??? (fsck_hfs + 43610) [0x106ff0a5a]
    14  ??? (fsck_hfs + 41086) [0x106ff007e]
    2   ??? (fsck_hfs + 28484) [0x106fecf44]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28373) [0x106feced5]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29225) [0x106fed229]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28492) [0x106fecf4c]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29199) [0x106fed20f]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28511) [0x106fecf5f]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28505) [0x106fecf59]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28401) [0x106fecef1]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28477) [0x106fecf3d]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28390) [0x106fecee6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 30356) [0x106fed694]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28496) [0x106fecf50]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28343) [0x106feceb7]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    4   ??? (fsck_hfs + 33871) [0x106fee44f]
    4   ??? (fsck_hfs + 41086) [0x106ff007e]
    1   ??? (fsck_hfs + 28652) [0x106fecfec]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28673) [0x106fed001]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29179) [0x106fed1fb]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28664) [0x106fecff8]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    39  ??? (fsck_hfs + 134138) [0x107006bfa]
    39  ??? (fsck_hfs + 73083) [0x106ff7d7b]
    36  ??? (fsck_hfs + 33605) [0x106fee345]
    22  ??? (fsck_hfs + 43420) [0x106ff099c]
    20  ??? (fsck_hfs + 40781) [0x106feff4d]
    8   ??? (fsck_hfs + 28484) [0x106fecf44]
    *8   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *8   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *8   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *8   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *8   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28492) [0x106fecf4c]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29194) [0x106fed20a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29225) [0x106fed229]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 26738) [0x106fec872]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28433) [0x106fecf11]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28442) [0x106fecf1a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28427) [0x106fecf0b]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28490) [0x106fecf4a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28660) [0x106fecff4]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28496) [0x106fecf50]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28477) [0x106fecf3d]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 40680) [0x106fefee8]
    2   ??? (fsck_hfs + 32482) [0x106fedee2]
    1   ??? (fsck_hfs + 17850) [0x106fea5ba]
    1   _platform_memmove$VARIANT$Nehalem + 258 (libsystem_platform.dylib) [0x7fff8ae280e2]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 17595) [0x106fea4bb]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    13  ??? (fsck_hfs + 43610) [0x106ff0a5a]
    13  ??? (fsck_hfs + 41086) [0x106ff007e]
    2   ??? (fsck_hfs + 30447) [0x106fed6ef]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28484) [0x106fecf44]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 28477) [0x106fecf3d]
    *2   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *2   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *2   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *2   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *2   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29225) [0x106fed229]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28511) [0x106fecf5f]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28406) [0x106fecef6]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 30435) [0x106fed6e3]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28490) [0x106fecf4a]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29255) [0x106fed247]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 29237) [0x106fed235]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 43408) [0x106ff0990]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    2   ??? (fsck_hfs + 33871) [0x106fee44f]
    2   ??? (fsck_hfs + 41086) [0x106ff007e]
    1   ??? (fsck_hfs + 28860) [0x106fed0bc]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
    *1   ??? (mach_kernel + 900976) [0xffffff80002dbf70]
    1   ??? (fsck_hfs + 28331) [0x106feceab]
    *1   ??? (mach_kernel + 996585) [0xffffff80002f34e9]
    *1   ??? (mach_kernel + 898031) [0xffffff80002db3ef]
    *1   ??? (mach_kernel + 925350) [0xffffff80002e1ea6]
    *1   ??? (mach_kernel + 928680) [0xffffff80002e2ba8]
                  

  • My iPod touch is stuck in landscape view.  Even when held vertically if I open facebook or safari is rotates to landscape.  Have tried turning on and off, same results. Any ideas to fix?

    My iPod touch is stuck in landscape view.  Even when held vertically if I open facebook or safari is rotates to landscape.  Have tried turning on and off, same results. Any ideas to fix?

    Try switching it back from landscape to vertical. Or, go to settings and see if you have any special setting turned on that enable only landscape view. Also, try hooking it up to your computer and charging it to see what happens.

  • My iPod touch is stuck on one song in my play list when in the shuffle mode.  How do I fix this to shuffle through all the songs in that playlist?

    My iPod touch is stuck on one song in my play list when in the shuffle mode.  How do I fix this to shuffle through all the songs in that playlist?

    If you go to the Now Playing screen, the Repeat control is the the arrowed racetrack icon on the left side right below the scrubber bar. Tap the icon to change. It is white when Repeat is off.

  • The screen on my ipod touch is stuck zoomed in. I turned it off and back and its still stuck zoomed in. I also tried to reset it and that didn't work either. Please help.

    The screen on my ipod touch is stuck zoomed in. I don't know how it happened I just looked down and it was like that. I have turned it off and back and even reset it but it still keeps zooming back in each time I turn it on. I can't unlock it because I can't see the numbers and it won't let me move around the screen. Please help.

    This is asked and answered often.  The foru search bar is on the right side of this page.
    It is also covered in the manual - zoom feature:
    iPod touch User Guide (For iOS 4.3 Software)
    Double tap with three fingers.

  • The Home button on my iPod Touch is stuck in!

    Hi,
    Dropped my iPod this morning. The home button is stuck in. It was bought for me as a Christmas Present. Is it still covered with warranty? Hope it is, if it's not how much roughly? Or is it just a simple DIY 10 min job? Thanks in advance, Freely2

    Try:
    fix for Home button
    Fix a broken, unresponsive or sticky iPhone Home Button
    - If you have iOS 5 and later you can turn on Assistive Touch it add the Home and other buttons to the iPods screen. Settings>General>Accessibility>Assistive Touch
    - If not under warranty Apple will exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    - There are third-party places like the following that will repair the Home button. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens

  • Calendar app stuck on year view

    iPhone 4S running OS 8.1 - Calendar app stuck in year view. Shows todays date in red but when you try to go to "Today" nothing happens. Any thoughts?

    There is more than one place to change time. If you set the time to local, you need to go into Settings>Mail, Contacts, Calendar>scroll down to the bottom under calendar and set the time zone support there for the local time zone.

  • My iPod Touch is stuck in recovery mode after I left it on while updating!!!

    I was updating my ipod touch 3rd generation (ios 4.3, i think) and I saw a wasp and left the computer on in the middle of the updating process and now the ipod is stuck in recovery mode and it says the only way to get it out is to recover it, but that will erase everything!!! HELP ME!!! until i get an answer      I HATE YOU, APPLE URGG
    operating system: whatever the latest available to itouch is.

    Without knowing what the error message said all I can suggest is:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

Maybe you are looking for