My AIR crashed sometimes

Hi  all, I am very sorry to have to ask a terriable question in here ,Because my team and I have no way to fix our air  project bug.
   For my problem, I and my team have tried about 10 days, But still can not find why.
   Ok ,now I share my question and crashlog here in detail, if someone has the way to solve this bug. Please tell me .
   My email is : [email protected], and my msn is : [email protected]
   The problem is : when I run web browsing in my air application ,sometimes the air crashed by unhandle SIGSEGV
    Detail:
   1. my running OS is ubuntu  and the version is 9.04
   2. my cpu : INTEL Atom N270
   3. my air runtime is 2.0.
   4. After AIR crashed my ubuntu dumped message like this :
       Application crased by unhandled SIGSEGV
       Segmentation Default
   5. My AIR application maybe crashed in two cases:
      I: used the html loading to browsing the web page
      II: played the flash or others
   6. I think maybe these programing codes can help you find the reason.(these code for web browing function)
   7. Here I attached the log .
    Watting for you reply, thank you very much

anybody can help me ?
Thanks !

Similar Messages

  • DVI ADAPTOR  iPad air crashes and resets after 5 or 30 minutes when i connect dvi adaptor

    DVI ADAPTOR  iPad air crashes and resets after 5 or 30 minutes when i connect dvi adaptor   I don't know the reason Sometimes its ok for more than 30 min and suddenly then crashes and the iPad resets

    For those still wondering how to install ios 6.1 on 5th gen iPod, you need to download it off of apples official website and then shift click restore from backup and choose the downloaded ios 6.1
    apples one year warrant covers any hardware problems like these right?

  • Mid-2011 MacBook Air Crashed When Unplugging Thunderbolt

    I am using the Belkin Thunderbolt Express dock. I have found that if I am running my Macbook Air off of the battery and unplug the Belkin dock, my Air crashes. Has anyone else had any issues with their Macbook crashing when dicsonnecting a Thunderbolt peripheral?

    I never installed it, it's popped up each time I've checked -- but today it wasn't offered in Software Update.  Odd.

  • How do I repair a hard drive that was being written to while my MacBook Air crashed? (Drive will not mount)

    My external backup drive will not mount. I have tried to mount it in Disk Utility via the app and the command prompt but the attempt times out. Any suggestions?
    I backed up my HD the day before dropping off my Mac for repair, and then tried again just before going to my appointment. During this last and final backup my Macbook Air crashed. I have since discovered that the drive will no longer mount, likely due to the crash that occured during the last attempted backup. I am unsure if the drive can be repaired.
    My logic board was short circuiting some where that controls the headphone jack. Initially this prevented me from using the jack but eventually caused my mac to crash several times before I brought it in for repair. I believe that it is the this crashing that is responsible for my back up not being accessible but that my data may still be intact.
    Thanks for any help you may have!

    If possible, attach it to another Mac and see if it is recognized in Disk Utility.  If so, run Disk Utility>First Aid.  If not, the HDD may be damaged.
    Ciao.

  • Gaming apps freezes for few seconds , then resumes by itself or crashes sometimes ,after upgrading to iOS 8.3 on iphone 6

    Gaming apps freezes for few seconds , then resumes by itself or crashes sometimes ,after upgrading to iOS 8.3 on iphone 6

    Update: my phone's connecting to the WiFi again. I don't know what did the trick. I did nothing since reinstalling the software. It hadn't worked then, it is now. I tried connecting to my dad's phone's hotspot( he uses a Moto G), and it worked. I then tried connecting to the WiFi at a friend's house, and when I came back home, my phone was able to connect to my WiFi! Is it of any significance that my friend's router doesn't require a password? My issue has been resolved( for now; I hope I'm not counting my chickens before they've hatched). For anyone facing a similar issue, I suggest you try everything I did:
    1. Turn your router off for a minimum of 30 seconds, turn it back on and try connecting.
    2. Click on the WiFi network you are connected to, scroll to the bottom, tap "Renew Lease".
    3. Do a soft and hard reset.
    4. Reset network settings.
    5. Back your data up, erase all content from settings menu, restore from backup.
    6. Reinstall your software( put it in recovery mode).
    I am not sure which of the above worked for me. Make sure you try everything. If none of the above works, take it to a genius bar or an authorised service provider. Good luck! :)

  • Macbook air crashed when using USB.

    My macbook air crashed when I plugged in my new portable charger in the USB, and it refuse to start again. Nothing is happening when Im trying to start the mac. Is the macbook totally destroyed or can I fix this in some way? appreciate your help!

    You should also ask this in the MacBook Air forum. This is the forum for the white and black plastic MacBooks that were discontinued in 2010. You should also post this question there to increase your chances of getting an answer.
    https://discussions.apple.com/community/notebooks/macbook_air

  • Adobe Air Crash when try to load video

    Hi,
    Recently, I am trying to do an very simple application using Adobe Air that plays video when certain key pressed on keyboard. However, the adobe air crash frequently when it try to load the video. The problem seems to be Adobe Air/ Flash player bug, because when I tried to do the debug, the debug launcher crash. I have tried with both f4v and mp4 format, but the situation is still the same.
    I am using up to date Flash builder 4.5 and Adobe Air 2.7.1. Tested on both WinXP and Win7 Home Premium 32bit. Hopes to get your respond as soon as possible. If the problem cannot be solved soon, maybe I have to search for alternative solution to do the project. Thanks.
    Here is my working code:
    Display Window:
    <?xml version="1.0" encoding="utf-8"?>
    <s:WindowedApplication xmlns:fx="http://ns.adobe.com/mxml/2009"
                                xmlns:s="library://ns.adobe.com/flex/spark"
                                xmlns:mx="library://ns.adobe.com/flex/mx" width="640" height="360" showStatusBar="false" applicationComplete="initConn()">
         <fx:Script>
              <![CDATA[
                   import flash.utils.setTimeout;
                   import mx.events.FlexEvent;
                   private var SWFconn:LocalConnection;
                   private var delay:Number = 300;
                   private var intervalId:uint;
                   protected var nWin:videoscreen = new videoscreen();
                   private var playing:Number = 0;
                   protected function initConn():void{
                        stage.addEventListener(KeyboardEvent.KEY_DOWN, handleKeyDown);
                        SWFconn = new LocalConnection();
                        nWin.width = 500;
                        nWin.height = 400;
                        nWin.open();
                   public function handleKeyDown(event:KeyboardEvent) :void
                        if(event.keyCode==13){
                             stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
                             nWin.fullscreen();
                        }else if(event.keyCode==27){
                             stage.displayState = StageDisplayState.NORMAL;
                             nWin.normalscreen();
                        }else{
                             if((playing==0)&&(((event.keyCode>=48)&&(event.keyCode<=57))||((event.keyCode>=65)&&(event.keyCode<=67)))){
                                  playing=1;
                                  SWFconn.send("swfConnection", "reset");
                                  clearTimeout(intervalId);
                                  SWFconn.send("swfConnection", "select", String.fromCharCode(event.charCode));
                                  intervalId = setTimeout(sendLock,delay, String.fromCharCode(event.charCode));
                   private function sendLock(msg:String):void{
                        SWFconn.send("swfConnection", "lock", msg);
                        playing=1;
                        nWin.player.source = msg+".f4v";
                        nWin.player.play();
                   private function reset():void{
                        SWFconn.send("swfConnection", "reset");
                   public function playFinished():void{
                        reset();
                        playing =0;
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <mx:SWFLoader left="0" right="0" top="0" bottom="0" source="content.swf"/>
    </s:WindowedApplication>
    Video Window:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Window xmlns:fx="http://ns.adobe.com/mxml/2009"
                xmlns:s="library://ns.adobe.com/flex/spark"
                xmlns:mx="library://ns.adobe.com/flex/mx" width="400" height="300" showStatusBar="false">
         <fx:Script>
              <![CDATA[
                   import mx.core.FlexGlobals;
                   import org.osmf.events.TimeEvent;
                   protected function CallBack(event:TimeEvent):void
                        // TODO Auto-generated method stub
                        player.source="";
                        FlexGlobals.topLevelApplication.playFinished();
                   public function fullscreen():void
                        stage.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
                   public function normalscreen():void
                        stage.displayState = StageDisplayState.NORMAL;
              ]]>
         </fx:Script>
         <fx:Declarations>
              <!-- Place non-visual elements (e.g., services, value objects) here -->
         </fx:Declarations>
         <s:VideoDisplay id="player" left="0" right="0" top="0" bottom="0" complete="CallBack(event)"/>
    </s:Window>

    Hi Pierre,
    Would you mind adding this as a new bug report over at bugbase.adobe.com?  I went to look to see if there was an existing bug already in place but couldn't find one.  If you can, note this thread url in the bug and post back with the bug URL and I'll follow up internally.
    In Yue's original bug, he was able to narrow this down to memory leaks in the spark component video display.  He ended up working around it by using the mx video display.
    Thanks,
    Chris

  • Mac Air Crashed New Mac Need help syncing

    My Mac Book Air Crashed. My back up to my music was my IPad. I was able to get my purchased music from to sync with the new Ipad, or rather authorized. I want to get my pics and music from my IPad to the new computer. This is music from old CDs I had uploaded to my Mac Air and then to my IPad and Nano. I want the music that was not purchased from Itunes on my computer.
    Can I do that? There has to be a way to do this. I know you can only sync to one computer, but what happens when you have a crash or your computer is lost or destroyed?

    check out this post by Zevoneer.
    also, there is PhoneView.
    JGG

  • My iPad Air crashes on all web browsers making it useless for work

    My iPad Air crashes alot which is only a problem when filling in forms or working on it , my dads iPhone 6 does the same thing. Are apple products no good any more or is there a way to fix it?! I've tried google chrome and opera and they crash n lose the work too. Basically useless as a work tool

    I just cancelled my Iphone 6 order (it wasn't getting here anytime soon anyway) because it is using IOS 8.  I wouldn't go near that operating system if you begged me.  I used to love Apple products.  They absolutely are no good since I upgraded to IOS 8 from 7. What a mistake.  My Ipad has crashed 4 times, and after restoring to new, it crashes again.  I have lost money on upgrades to apps, or add ons to apps and have finally decided to go to a Windows system.  I can always add ipadian to the windows system to use my apple apps.  I better not upgrade my apple imac or something terrible might happen.  Sorry Apple but I had one of the first Apple IIe's way back in the 80's but you lost me for good, because you are ignoring everyone with this - "it is a hardware problem", no sir it is not.  Turn on WiFi and there it goes again, crashed. 

  • I brought new Ipad air, when ever I try to delete apps, ipad air crashes, tries many times unable to remove apps.

    I brought new Ipad air, when ever I try to delete apps, ipad air crashes, tries many times unable to remove apps.

    You can try resetting your iPad by simultaneously pressing and holding the Home and Sleep/Wake buttons until you see the Apple Logo. This can take up to 15 seconds so be patient and don't release the buttons until the logo appears.
    Try again to see if the problem persists.

  • IPad air crashes while using Song Pop app three times so far.

    Is there a fix for iPad Air crashing while using apps?

    Hi there  DJ Axis,
    You may find the troubleshooting steps in the article below helpful.
    iOS: Troubleshooting apps purchased from the App Store
    http://support.apple.com/kb/TS1702
    -Griff W. 

  • My mac book air crashes...

    My mac book air crashes all the time I look at videos on Globo.com. Globo.com is a Brazilian tv website. So anoyng.
    What to do?

    Anti virus softare installed ?
    Apple stores and Apple Authorized Service Providers >  Apple - Find Locations

  • Abode Air Crashes

    My Abode Air crashes on every app when I double click on them. I have the latest Abode Air installed. Abode Air version  15.0.0.293. I have windows 7 as my operating system. This is the results from the event logs:
    Log Name:
    Application
    Source:  
    Application Error
    Date:    
    10/23/2014 10:14:25 AM
    Event ID:
    1000
    Task Category: (100)
    Level:   
    Error
    Keywords:
    Classic
    User:    
    N/A
    Computer:
    Steamskunk-PC
    Description:
    Faulting application name: MoCam.exe, version: 0.0.0.0, time stamp: 0x502c1e72
    Faulting module name: Adobe AIR.dll, version: 15.0.0.293, time stamp: 0x54236fd0
    Exception code: 0xc0000005
    Fault offset: 0x0056b20c
    Faulting process id: 0x16bc
    Faulting application start time: 0x01cfeecba4beec40
    Faulting application path: C:\Program Files (x86)\MoCam\MoCam.exe
    Faulting module path: c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll
    Report Id: e3e1fa43-5abe-11e4-b5b4-e89a8f3dd976
    Event Xml:
    <Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
      <System>
    <Provider Name="Application Error" />
    <EventID Qualifiers="0">1000</EventID>
    <Level>2</Level>
    <Task>100</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2014-10-23T14:14:25.000000000Z" />
    <EventRecordID>39352</EventRecordID>
    <Channel>Application</Channel>
    <Computer>Steamskunk-PC</Computer>
    <Security />
      </System>
      <EventData>
    <Data>MoCam.exe</Data>
    <Data>0.0.0.0</Data>
    <Data>502c1e72</Data>
    <Data>Adobe AIR.dll</Data>
    <Data>15.0.0.293</Data>
    <Data>54236fd0</Data>
    <Data>c0000005</Data>
    <Data>0056b20c</Data>
    <Data>16bc</Data>
    <Data>01cfeecba4beec40</Data>
    <Data>C:\Program Files (x86)\MoCam\MoCam.exe</Data>
    <Data>c:\Program Files (x86)\Common Files\Adobe AIR\Versions\1.0\Adobe AIR.dll</Data>
    <Data>e3e1fa43-5abe-11e4-b5b4-e89a8f3dd976</Data>
      </EventData>
    </Event>
    Is there a fix or workaround for this?

    Have you tried contacting the developer of MoCam.exe to see if this is a known issue?  Did this recently start occurring after updating to a new version of Adobe AIR?
    Thanks,
    Chris

  • IPad Air crashes with low memory error in Google Translate Web Site

    My new iPad Air crashes with low memory error every time I try to use my Phrasebook in Google Translate Web site. This is rather disapointing considering that my old Nexus 10, that iPad Air is supposed to replace, works flawlessly in Google Translate Web site. Perhaps this has to do with the rather limited RAM (1GB) that iPad Air is equippoed with.
    I would appreciate any recommendation, Thanks in advance.

    See this topic in
    https://discussions.apple.com/message/24758170?ac_cid=tw123456#24758170
    And other threads
    Good luck.

  • My Macbook air crashed

    My Macbook air crashed as following:
    -OS:Mountain lion
    Does anyone who can let me know what caused the problem by looking at the report? software problem or hardware problem?
    Tue Jul 31 20:15:59 2012
    panic(cpu 2 caller 0xffffff80286b7b95): Kernel trap at 0xffffff7fa8f2e2b6, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x00000001f9caa384, CR3: 0x000000002a899000, CR4: 0x00000000001606e0
    RAX: 0x00000000000001bc, RBX: 0x00000000000001bc, RCX: 0xffffff803d578aa0, RDX: 0xffffff8117f33c48
    RSP: 0xffffff8117f33cd0, RBP: 0xffffff8117f33d10, RSI: 0xffffff8117f33cb4, RDI: 0x0000000000000001
    R8:  0x0000000000000000, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff80f9caa398, R13: 0xffffff80f9caa000, R14: 0x00000001f9caa384, R15: 0xffffff80f9caa38a
    RFL: 0x0000000000010283, RIP: 0xffffff7fa8f2e2b6, CS:  0x0000000000000008, SS:  0x0000000000000000
    Fault CR2: 0x00000001f9caa384, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff8117f33970 : 0xffffff802861d5f6
    0xffffff8117f339e0 : 0xffffff80286b7b95
    0xffffff8117f33bb0 : 0xffffff80286ce4ad
    0xffffff8117f33bd0 : 0xffffff7fa8f2e2b6
    0xffffff8117f33d10 : 0xffffff7fa8f2de68
    0xffffff8117f33d50 : 0xffffff7fa8f2e898
    0xffffff8117f33d90 : 0xffffff7fa8f35a50
    0xffffff8117f33dd0 : 0xffffff8028a47b6a
    0xffffff8117f33e30 : 0xffffff7fa8f867d3
    0xffffff8117f33e70 : 0xffffff7fa8f85e11
    0xffffff8117f33eb0 : 0xffffff8028a3b708
    0xffffff8117f33f40 : 0xffffff8028a36b65
    0xffffff8117f33f60 : 0xffffff802863dcae
    0xffffff8117f33fb0 : 0xffffff80286b2677
         Kernel Extensions in backtrace:
            com.apple.driver.AppleUSBXHCI(1.1)[EBF96326-D5DD-3D8F-B8B9-54FD7BC65825]@0xffff ff7fa8f2b000->0xffffff7fa8f40fff
               dependency: com.apple.iokit.IOUSBFamily(5.1.6)[3D499FAA-A5C4-3ED8-BF37-3B561ED21D64]@0xffff ff7fa8cbe000
               dependency: com.apple.iokit.IOPCIFamily(2.7)[8C9E06A4-13D0-33F5-A377-9E36F0ECC229]@0xffffff 7fa8c8a000
            com.apple.driver.AppleUSBHub(5.1.6)[8577551C-B188-36C3-B76C-FC2D1DBB3F32]@0xfff fff7fa8f81000->0xffffff7fa8f94fff
               dependency: com.apple.iokit.IOUSBFamily(5.1.6)[3D499FAA-A5C4-3ED8-BF37-3B561ED21D64]@0xffff ff7fa8cbe000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12A269
    Kernel version:
    Darwin Kernel Version 12.0.0: Sun Jun 24 23:00:16 PDT 2012; root:xnu-2050.7.9~1/RELEASE_X86_64
    Kernel UUID: 8D5F8EF3-9D12-384B-8070-EF2A49C45D24
    Kernel slide:     0x0000000028400000
    Kernel text base: 0xffffff8028600000
    System model name: MacBookAir5,2 (Mac-2E6FAB96566FE58C)
    System uptime in nanoseconds: 11330308320192
    last loaded kext at 6486996888: com.parallels.kext.prl_vnic          7.0 15098.770637 (addr 0xffffff7faa22e000, size 20480)
    last unloaded kext at 172885395721: com.apple.driver.AppleFileSystemDriver          3.0.1 (addr 0xffffff7faa0d4000, size 8192)
    loaded kexts:
    com.parallels.kext.prl_vnic          7.0 15098.770637
    com.parallels.kext.prl_netbridge          7.0 15098.770637
    com.parallels.kext.prl_hid_hook          7.0 15098.770637
    com.parallels.kext.prl_hypervisor          7.0 15098.770637
    com.parallels.kext.prl_usb_connect          7.0 15098.770637
    com.apple.driver.AudioAUUC          1.60
    com.apple.iokit.IOBluetoothSerialManager          4.0.9f8
    com.apple.filesystems.autofs          3.0
    com.apple.driver.AGPM          100.12.69
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.ApplePlatformEnabler          2.0.5d4
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.0f2
    com.apple.driver.AppleMikeyDriver          2.3.0f2
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.2.6
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleSMCLMU          2.0.2d0
    com.apple.driver.AppleBacklight          170.2.3
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.driver.AppleMCCSControl          1.0.33
    com.apple.driver.AppleIntelHD4000Graphics          8.0.0
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleIntelFramebufferCapri          8.0.0
    com.apple.driver.AppleUSBTCButtons          235.4
    com.apple.driver.AppleUSBTCKeyboard          235.4
    com.apple.driver.AppleUSBCardReader          3.1.0
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless          1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib          1.0.0d1
    com.apple.BootCache          34
    com.apple.driver.XsanFilter          404
    com.apple.iokit.IOAHCIBlockStorage          2.2.0
    com.apple.driver.AppleUSBHub          5.1.6
    com.apple.driver.AirPort.Brcm4331          600.15.20
    com.apple.driver.AppleAHCIPort          2.4.0
    com.apple.driver.AppleUSBXHCI          1.1.0
    com.apple.driver.AppleUSBEHCI          5.1.5
    com.apple.driver.AppleEFINVRAM          1.6.1
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleACPIButtons          1.6
    com.apple.driver.AppleHPET          1.7
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.6
    com.apple.driver.AppleAPIC          1.6
    com.apple.driver.AppleIntelCPUPowerManagementClient          196.0.0
    com.apple.nke.applicationfirewall          4.0.39
    com.apple.security.quarantine          2
    com.apple.driver.AppleIntelCPUPowerManagement          196.0.0
    com.apple.iokit.IOSerialFamily          10.0.6
    com.apple.kext.triggers          1.0
    com.apple.driver.DspFuncLib          2.3.0f2
    com.apple.iokit.IOAudioFamily          1.8.9fc9
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.driver.AppleSMBusPCI          1.0.10d0
    com.apple.driver.AppleHDAController          2.3.0f2
    com.apple.iokit.IOHDAFamily          2.3.0f2
    com.apple.iokit.IOSurface          86.0.2
    com.apple.iokit.IOBluetoothFamily          4.0.9f8
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.driver.AppleSMC          3.1.3d11
    com.apple.driver.AppleGraphicsControl          3.2.6
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.0.9f8
    com.apple.driver.AppleSMBusController          1.0.10d0
    com.apple.iokit.IONDRVSupport          2.3.4
    com.apple.driver.IOPlatformPluginFamily          5.2.0d16
    com.apple.iokit.IOGraphicsFamily          2.3.4
    com.apple.driver.AppleUSBMultitouch          235.7
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.5
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.5
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.5
    com.apple.iokit.IOUSBHIDDriver          5.0.0
    com.apple.iokit.IOSCSIBlockCommandsDevice          3.5.1
    com.apple.iokit.IOUSBMassStorageClass          3.5.0
    com.apple.iokit.IOSCSIArchitectureModelFamily          3.5.1
    com.apple.driver.AppleUSBMergeNub          5.1.5
    com.apple.driver.AppleUSBComposite          5.0.0
    com.apple.driver.AppleThunderboltNHI          1.6.0
    com.apple.iokit.IOThunderboltFamily          2.0.3
    com.apple.iokit.IO80211Family          500.15
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBUserClient          5.0.0
    com.apple.iokit.IOAHCIFamily          2.2.0
    com.apple.iokit.IOUSBFamily          5.1.6
    com.apple.driver.AppleEFIRuntime          1.6.1
    com.apple.iokit.IOHIDFamily          1.8.0
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          344
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.18
    com.apple.driver.AppleACPIPlatform          1.6
    com.apple.iokit.IOPCIFamily          2.7
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    Model: MacBookAir5,2, BootROM MBA51.00EF.B00, 2 processors, Intel Core i5, 1.8 GHz, 8 GB, SMC 2.5f7
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434353153364D465238412D50422020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434353153364D465238412D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xE9), Broadcom BCM43xx 1.0 (5.106.98.81.20)
    Bluetooth: Version 4.0.9f8 10405, 2 service, 11 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD TS128E, 121.33 GB
    USB Device: USB Receiver, 0x046d  (Logitech Inc.), 0xc52f, 0x14100000 / 1
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1a100000 / 2
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8510, 0x1a110000 / 3
    USB Device: hub_device, 0x8087  (Intel Corporation), 0x0024, 0x1d100000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0x1d180000 / 3
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8404, 0x1d183000 / 6
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x024c, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821f, 0x1d181300 / 8

    In the future, I suggest that when you use a USB item, you eject it first before simply pulling it out of the USB port.  That will allow the software to gracefully disconnect first.
    There are several ways to do the eject.  One way is to set Finder's preferences to show all hard disks and external disks on the desktop (under Finder > Preferences > General).  Then you could right click on the USB device's icon on your desktop and choose "Eject" when the time is right.

Maybe you are looking for

  • Itunes account security

    i received an email masquerading as from Apple Security, informing me my account has been frozen and that i need to verify security information. Stupidly (it was 5am in my defence!) i opened the email and was directed to what looked like a legit Appl

  • File - xi - bw   without proxy  but with RFC

    Hallo Is it possible data to BW over XI to send on by RFC without one proxy to use, and if how? Thanks yves

  • Physical Inventory by Area

    I have a simple business scenario that for physical inventory counting.  Raw Materials are store in 1 storage location.  They are required to count them 1 time a month.  The warehouse personnel split up the storage location into 4 areas (lanes) and c

  • HTMLLoader action does not work

    All I want to do is to send e-mails of an image of the page to a list of users . I am developing the BLS to do so .  Therefore,  I am doing a step by step aproach : 1.- Using a HTMLLoader action providing all the parameters (  Source URL , login user

  • SAP Mobile Installation

    I am New to SAP MI but has been assisgned a small PDA development, which I had done in VB.NET, but this project I want to use SAP MI. I have BW 3.5 with WEB AS 6.40 and also I have EP6.0, Can I use the BW WEB AS or EP 6.0 for SAP Mobile Install? How