Deadlock problem, why?

Hello.
I have aplication founded with Oracle database 10g2.
People are working and sometimes the application hangs ...
Please see this logs: http://student.zsl.gda.pl/~krystian/oracle/
What should I do to fix this problem?
Please help me.

To put the deadlock file into english:
Deadlock graph:
                       ---------Blocker(s)--------  ---------Waiter(s)---------
Resource Name          process session holds waits  process session holds waits
TM-00003868-00000000        32     119           X       39     141          SS
TM-0000385d-00000000        39     141    SS             20     135           X
TM-00003868-00000000        20     135    SS             32     119           X
session 119: DID 0001-0020-0000000B     session 141: DID 0001-0027-00000010
session 141: DID 0001-0027-00000010     session 135: DID 0001-0014-0000003C
session 135: DID 0001-0014-0000003C     session 119: DID 0001-0020-0000000B
Rows waited on:
Session 141: obj - rowid = 00003DBB - AAAD27AANAAAZ2FAAA
  (dictionary objn - 15803, file - 13, block - 105861, slot - 0)
Session 135: obj - rowid = 00003AFB - AAADr7AANAAASUIAAA
  (dictionary objn - 15099, file - 13, block - 75016, slot - 0)
Session 119: no row1. Session 141 is waiting behind session 119 for a lock on object 14440 (hex: 3868).
2. Session 119 is waiting for X lock on object 14440 but is blocked by session 135 which has an SS lock on it.
3. But session 135 is itself waiting for an x lock on object 14429 (hex: 385d), a request which is held up the SS lock which session 141 holds but can't release because it's blocked by 119 (back to point 1).
So you have three session participating in the deadlock.
You just need to be aware that the SQL statements in the files don't give you the full picture of everything involved in the deadlock scenario.
For that, you're either going to have to reproduce the problem and trace the sessions or step through the application code and the order in which things are done / data is modified
Use the data dictionary to verify the objects being waited on above (dba_objects.object_id 14440/14429) are the ones in the statements.

Similar Messages

  • I have a big problem :( why is it i cant update my ipod touch 2g into ios 4! im using the latest version of itunes and everytime i click "update" it stucks on the "contacting server" please help :( i want to update it now

    i have a big problem why is it i cant update my ipod touch 2g into ios 4! im using the latest version of itunes and everytime i click "update" it stucks on the "contacting server" please help i want to update it now

    Maybe here:
    iTunes for Windows: iTunes cannot contact the iPhone, iPad, or iPod software update server

  • I can't upgrade my Mac to OS Mavericks. I still don't know the problem why. I have my mac with OS 10.8.5 and also a 2012 model . Please help me :((

    I can't upgrade my Mac to OS Mavericks. I still don't know the problem why. I have my mac with OS 10.8.5 and also a 2012 model >.< Please help me :((

    Oh that really works ;D Thanks

  • I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    I just updated my iphone to IOS 7 and cannot get my imessage to work, it keeps saying "waiting for activation" nothing i have read online has helped me try to fix the problem. why is it doing this and how can i fix it?

    Here's a good troubleshooting article about imessage "waiting for activation".
    http://support.apple.com/kb/TS4268

  • Why can't i log in facetime on mac? error reads,server encoutered problem why registering?

    why can't i log in facetime on mac? error reads,server encoutered problem why registering?

    Two useful KB articles:
    http://support.apple.com/kb/HT4534
    http://support.apple.com/kb/HT4319
    The second says iOS but it actually tells how to use FaceTime from a Mac in addition to iOS devices.

  • HT204291 Airplay intermittent problem, why does not airplay work well anylonger?

    Airplay intermittent problem, why does not airplay work well anylonger. Suddenly it drops out. Now this function has gone from great to ****.
    Trying to view streamed content from the ipad to the Apple TV? Nah forget about it. Sooo dissapointing.

    Restart your wifi router

  • Investigation on the problem why the exchange rate in the invoice is not u

    Hi,
    Informed by customer that the exchange rate (HKD-MOP) of ULP has been changed to 1.0309 from 1.03 since 26 Aug. The corrected exchange rate should be 1.03
    Would you do the investigation on the problem why the exchange rate in the invoice is not updated?

    Hii..
    In T Code OB08 Update the Exchange rate that is applicable from the date which you want.
    Regards,
    Aakash

  • Punch in problem-Why does cycle mode activate and snap to somewhere else when I set up a punch?

    Punch in problem-Why does cycle mode activate and snap to somewhere else when I set up a punch?

    Because whoever programmed it must be ********, I've dealt with this issue long enough.  I've sent Apple feedback on this issue long ago and nothing has been done yet.  The only work around is to try and remember that every time you double click in the punch line to hit the c button to turn it off before you start recording or you have to drag your punch line around all the time, what a pain in the ***.

  • Deadlock Problems

    Hi, i've got a deadlock problem - I've read though the tutorials about it but I still dont get whats going on... =/
    Basically I want to send out the position of the scrollbar, but make sure that messages are not sent too often (no less than 0.5 sec between messages). Heres some code (its trimmed down - pretend that the scrollbar was added to a window and that the sendScrollMoved method exists):
    private int scrollValue ;
    public Constructor() {
      scrollValue = -1 ;
      JScrollBar scrollbar = new JScrollBar() ;
      scrollbar.addAdjustmentListener( new AdjustmentListener() {
          public void adjustmentValueChanged(AdjustmentEvent e) {
            scrollValue = e.getValue() ;
      ScrollThread thread = new ScrollThread() ;
      thread.run() ;
      private class ScrollThread extends Thread {
        public ScrollThread() {
          super() ;
          setDaemon(true) ;
        public void run() {
          while (1==1) {
            yield() ;
            try {
              sleep(500) ;
            } catch(Exception e) {
                System.out.println("ScrollListener couldnt sleep") ;
            if (scrollValue >= 0) {
               sendscrollMoved(scrollValue) ;
               scrollValue = -1 ;

    the program halts without displaying any error
    messagesIf there was a deadlock then the program would stall forever without halting. This is the opposite of your actual symptoms. So you need to stop looking for deadlocks and start with another guess at your actual problem.

  • MtxLock DeadLock problem

    Hello all,
        In one of our ECC system when a user executing one transaction work process is taking more time for execution. When i checked the trace file of the work process i found following error/warning:
    I  WARNING: MtxLock 0xc000000017e340f0 rrol0003 owner=2 deadlock ?
    I Fri Mar 11 16:18:43 2011
    I  WARNING: MtxLock 0xc000000017e340f0 rrol0003 owner=2 deadlock ?
    I Fri Mar 11 16:19:44 2011
    I  WARNING: MtxLock 0xc000000017e340f0 rrol0003 owner=2 deadlock ?
    I searched on google but could not find anything. On SDN i found only one forum and some one has told to check if note 1309072 - System standstill: MtxLock EMADM helps to resolve the issue. But this note also could not help.
    Can anyone please answer this what this is exactly and why this occurs in system???
    Regards,
    Nirav

    I'm facing the same problem too and it occurred several times before, especially when someone was running programs which cost too much time and decided to ternimate the session but for some unknown reason failed, then the GUI crashed and after that, the work process began deadlock.
    The trace log is like below:
    C Thu Apr 14 15:50:56 2011
    C  build_stmt: reallocating stmt buffer: 3801 -> 4807 characters
    C  build_stmt: reallocating stmt buffer: 4807 -> 5808 characters
    C  build_stmt: reallocating stmt buffer: 2304 -> 3308 characters
    C  build_stmt: reallocating stmt buffer: 3308 -> 4318 characters
    C  build_stmt: reallocating stmt buffer: 512 -> 2000 characters
    C  build_stmt: reallocating stmt buffer: 3072 -> 4078 characters
    C  build_stmt: reallocating stmt buffer: 4078 -> 5090 characters
    C  build_stmt: reallocating stmt buffer: 256 -> 2000 characters
    I
    I Thu Apr 14 16:09:07 2011
    I  WARNING: MtxLock 0x7000000063626e4 rrol0112 owner=0 deadlock ?
    I
    I Thu Apr 14 16:10:08 2011
    I  WARNING: MtxLock 0x7000000063626e4 rrol0112 owner=0 deadlock ?
    I
    I Thu Apr 14 16:11:08 2011
    I  WARNING: MtxLock 0x7000000063626e4 rrol0112 owner=0 deadlock ?
    We are using ECC6 with kernal SAPKB70103 on AIX system with oracle database. I also noticed sap notes 1309072, but i don't know what EMADM stands for in the note as we have 'rrol0112' instead of 'EMADM' in the log, and whether we should apply the patch SP199 before let it work or we can just set parameters as mentioned in the notes.
    Could anybody please help to explain it or tell me how to do with the deadlock?
    Thank you very much!
    Best Regards,
    Jeff

  • Problem: Why does this only work for powers of 2?

    I wrote this program to create a golf league schedule for, ideally, eight players. However I want it to be flexible enough to permit for other denominations, such as 10 or 12. When I run the program it works perfectly for any number that is a power of 2 (2,4,8,16,32,etc...) but it will not work for other even numbers such as 6,10, or 12. If anyone has any insights it would be most helpful.
    *(This is my first post on this forum so if anything looks not quite right or if this post isn't worded exactly how it should be then I apologize in advance)*
    Here's the three classes.
    public class ScheduleDriver
         public static void main(String[] args)
                              //instance variables
              int max;     //size of flight matches array
              ScheduleMaster master;//instance of class
              //get max number of players for flight
              System.out.print("Max number of players in this flight:");
              max = Keyboard.readInt();
              master = new ScheduleMaster(max);
              //create weekly schedules for season
              master.createSchedule();
              //display weekly schedules
              master.displayWeekly();
         }//end main
    }//end ScheduleDriver
    public class ScheduleMaster
         //instance variables
         int maxPlyrs;//maximum number of players in flight
         Week[] weeklySchedule;//array of weekly matches
         public ScheduleMaster(int plyrs)
              //set up instance data and declare array size
              maxPlyrs = plyrs;
              weeklySchedule = new Week[plyrs];
              //set up the size of each week's matches array
              for (int pos = 0; pos < plyrs; pos++)
                   weeklySchedule[pos] = new Week(plyrs);
              }//end for
         }//end constructor
         public void createSchedule()
              int count = 0;//index of weeklySchedule array
              final int QUIT = -1;     //quit value for loop
              int flag = 0;     //value to continue or exit loop
              //for each player A
              for (int a = 1; a < maxPlyrs; a++)
                   //for each opponent of player A
                   for (int b = (a + 1); b <=maxPlyrs;b++)
                        //set count/index and       reset flag to zero
                        count = (a - 1);
                        flag = 0;
                        //while still haven't found correct week for this match
                        while (flag != QUIT)
                             //if at least one of these players are already scheduled
                             //for a match this week
                             if (weeklySchedule[count].checkPlayers(a,b) == true)
                                  //if last valid index of array has been reached
                                  if (count == (maxPlyrs - 2))
                                       //reset count/index to zero
                                       count = 0;
                                  else
                                       //incriment count
                                       count++;
                             }//end if
                             else
                                  //assign this match to array of matches for week
                                  //and then exit loop
                                  weeklySchedule[count].setMatch(a,b);
                                  flag = -1;
                             }//end else
                        }//end while
                   }//end for
              }//end for
              //fill in last week/position night
              for (int pos = 0; pos < maxPlyrs;pos++)
                   //set up position match
                   weeklySchedule[maxPlyrs - 1].setMatch(pos + 1, pos + 2);
                   //incriment pos
                   pos++;
              }//end for
         }//end createSchedule
         public void displayWeekly()
              //for each week in schedule
              for (int pos = 0; pos < maxPlyrs;pos++)
                   //display header
                   System.out.print("WEEK " + (pos + 1));
                   //if pos/index is 0 or even, flight plays front 9
                   if ((pos % 2) == 0)
                        System.out.println(" [FRONT 9]");
                   //else flight plays back 9
                   else
                        System.out.println(" [BACK 9]");
                   //display lines
                   System.out.println("----------------");
                   //display week's matches
                   weeklySchedule[pos].display();
                   //skip a line
                   System.out.println("\n");
              }//end for
         }//end displayWeekly
    }//end ScheduleMaster
    public class Week
         int[] schedule;          //array of players involved in matches for week
         int max;               //max number of players
         int count = 0;          //number of players currently involved in matches
         public Week(int size)
              //set up instance data and size of array
              max = size;
              schedule = new int[size];
         }//end constructor
         public boolean checkPlayers(int playerA, int playerB)
              boolean flag = false;     //flag to determine if at least one of
                                            //the players to check are already playing
                                            //this week
              //for each element of array
              for (int pos = 0; pos < max; pos++)
                   //if player A matches player already playing this week
                   if (schedule[pos] == playerA)
                        flag = true;
              }//end for
              //for each element of array
              for (int pos = 0; pos < max; pos++)
                   //if player B matches player already playing this week
                   if (schedule[pos] == playerB)
                        flag = true;
              }//end for
              return flag;
         }//end checkPlayers
         public void setMatch(int playerA, int playerB)
              //if array can take more matches
              if (count <= (max - 2))
                   //insert players into array of active players for week
                   schedule[count] = playerA;
                   schedule[count + 1] = playerB;
                   //incriment count of players playing this week by 2
                   count = count + 2;
              }//end if
              else
                   System.out.print("No more matches can be entered!!!");
         }//end setMatch
         public void display()
              //for every even numbered index starting at zero
              for (int num = 0;num < max;num++)
                   //display the player at that position and the next consecutive
                   //player who will be his opponent for the week
                   System.out.println(schedule[num] + "VS" + schedule[num + 1] +
                   //incriment num
                   num++;
              }//end for
         }//end display
    }//end Week

    Ah, I have discovered the problem. The reason for the infinite loop was because of the resetting of the counter/index after every successful match entry back to (a - 1). This was causing matches to be put into weeks where they didn't belong, which caused the program to infinitely loop because it couldn't find an appropriate week to place it's next match. The only time the count should be reset back to zero is when a new player A is being processed or the last valid array index has been referenced before an out of bounds exception would be thrown. I'm still not entirely sure why this doesn't occur on powers of 2 but theh again I haven't put too much thought into it having solved the initial problem! :)
    Anyways thanks for the input all who posted, much appreciated.
    Happy programming!!!!

  • User-defined object problem,why can't I use?

    as follows:
    UObject.java
    package test1;
    public class UObject
    private String num;
    public UObject()
    public void setNum(String num)
    this.num=num;     
    public String getNum()
    return num;     
    Test.java
    package test1;
    public class Test
    public static void main(String args[])
    UObject U=new UObject();
    U.setNum("Squall");
    System.out.println(U.getNum());
    UObject[] U=new UObject[5];
    for(int i=0;i<U.length;i++)
    U.setNum(String.valueOf(i));     
    for(int i=0;i<U.length;i++)
    System.out.println(U[i].getNum());
    error:
    java.lang.NullPointerException
    why can't I use?please tell me why?thanks.
    ps:in Test.java's comments can run./**/.

    Please use code formatting tags in future! http://forum.java.sun.com/features.jsp#Formatting
    It would be easy to find the problem yourself if you printed out a stack trace e.g.
    public static void main(String args[])
    try
    UObject U=new UObject();
    U.setNum("Squall");
    System.out.println(U.getNum());
    UObject[] U=new UObject[5];
    for(int i=0;i<U.length;i++)
    U.setNum(String.valueOf(i)); 
    for(int i=0;i<U.length;i++)
    System.out.println(U.getNum());
    catch( Exception e )
    e.printStackTrace()
    }Tho code doesnt look lke it compiles to me!

  • Auto backlight does not work on 4S with iOS 7! With iOS 6.1.3 I had the same problem.Why?

    Auto backlight does not work on 4S with iOS 7. I had the same problem with iOS 6.1.3! Why ?

    rlwebb71 wrote:
    ... I have the latest generation iPod touch, not the 5, but the latest. So why can't Siri come out and play? 
    Siri is not a feature of that iPod... 4th Gen...
    iOS 6  Which Software for Which iDevices...
    http://support.apple.com/kb/HT5457

  • Mule, Weblogic and MQ JMS : deadlock problem

    Dear Oracle community,
    We are hosting our Mule ESB (3.1) application on a Weblogic 10.3 (11g) server and are using IBM Websphere MQ's JMS solution (with libraries version 7.0.1.7).
    The problem we are facing is that JMS connections are created by one of Weblogic's worker (thread) and the close() method for those connections are not necessarily called by the same thread.
    This is bad because from what I know this behavior is undefined from JMS specification
    (see http://docs.oracle.com/cd/E15051_01/wls/docs103/jms/design_best_practices.html#wp1061413 ) and it is a blocker issue in our case because this lead to a deadlock.
    Do someone has any idea how to enforce the fact that the same thread do create and close the connection through Weblogic and/or Mule configuration (without re-implementing the connector) ?
    Thanks in advance for your help,
    Best regards,
    Y.
    PS : I've already posted this question on Mule ESB's forum : http://forum.mulesoft.org/mulesoft/topics/mule_weblogic_and_mq_jms_deadlock_problem
    Edited by: user7428803 on May 14, 2012 2:26 PM

    I hope you found a solution by now, but as an FYI:
    * The JMS specification specifically requires that JMS providers support the ability to call connection.close() and session.close() from an arbitrary thread even when another thread is making calls on these objects. It furthermore goes into some detail about the expected behavior of these calls. The best practices link you cited alludes to this: "The JMS Specification states that multi-threading a session, producer, consumer, or message method results in undefined behavior +except when calling close().+"
    * Depending on your use case, you may not need to use Mule to integrate MQ with WebLogic. WebLogic supports a variety of options for integrating MQ directly without the use of third party tooling. See http://download.oracle.com/docs/cd/E17904_01/web.1111/e13727/interop.htm .
    Tom

  • My macbook pro retina shutdown because of a problem why?

    Hello everyone!
    Why is it my macbook pro retina suddenly restart and said shutting down because of problem? this is the 2nd time I notice this since the latest update from mountain lion.
    Hope to find an answer.
    Thanks

    Mine did it too:
    Interval Since Last Panic Report:  717629 sec
    Panics Since Last Report:          1
    Anonymous UUID:                    1238684B-1FF8-9F56-7315-0498F2CFC61D
    Tue Apr 23 14:18:03 2013
    panic(cpu 0 caller 0xffffff8023cb7e95): Kernel trap at 0x0000000000000000, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000000, CR3: 0x00000000266b9000, CR4: 0x00000000001606e0
    RAX: 0xffffff8051654a00, RBX: 0xffffff80505e1000, RCX: 0x7fffffffffffffff, RDX: 0x0000000000000080
    RSP: 0xffffff81f7333d38, RBP: 0xffffff81f7333d50, RSI: 0x0000000000000000, RDI: 0xffffff80505e1000
    R8:  0x0000000000000000, R9:  0x00000000000003ff, R10: 0xffffffffffffffff, R11: 0x00000000ffffffff
    R12: 0xffffff80505d5642, R13: 0xffffff805b890043, R14: 0xffffff804dc44000, R15: 0x00000000e00002be
    RFL: 0x0000000000010246, RIP: 0x0000000000000000, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000000, Error code: 0x0000000000000010, Fault CPU: 0x0
    Backtrace (CPU 0), Frame : Return Address
    0xffffff81f73339d0 : 0xffffff8023c1d626
    0xffffff81f7333a40 : 0xffffff8023cb7e95
    0xffffff81f7333c10 : 0xffffff8023ccd4dd
    0xffffff81f7333c30 : 0x0
    0xffffff81f7333d50 : 0xffffff7fa4f45119
    0xffffff81f7333d90 : 0xffffff7fa4f448c7
    0xffffff81f7333df0 : 0xffffff7fa4f4473e
    0xffffff81f7333e00 : 0xffffff7fa4f3bd17
    0xffffff81f7333e30 : 0xffffff7fa4f3bc95
    0xffffff81f7333e60 : 0xffffff7fa4f18bd5
    0xffffff81f7333eb0 : 0xffffff7fa4f101a6
    0xffffff81f7333ee0 : 0xffffff7fa4f1013d
    0xffffff81f7333ef0 : 0xffffff7fa4f0e48d
    0xffffff81f7333f30 : 0xffffff7fa4f4f437
    0xffffff81f7333f50 : 0xffffff7fa4f4f3e7
    0xffffff81f7333f70 : 0xffffff7fa4f4f45c
    0xffffff81f7333f90 : 0xffffff7fa4f4f553
    0xffffff81f7333fb0 : 0xffffff8023cb2977
          Kernel Extensions in backtrace:
             com.apple.iokit.IOBluetoothFamily(4.1.3f3)[50471799-9DD9-31E7-872E-3121BD1FDEAC ]@0xffffff7fa4f06000->0xffffff7fa4fa9fff
                dependency: com.apple.iokit.IOUSBFamily(5.5.5)[A276B40E-978D-3623-93D3-8621B3CEECFC]@0xffff ff7fa427f000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    12D78
    Kernel version:
    Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    Kernel UUID: 3EB7D8A7-C2D3-32EC-80F4-AB37D61492C6
    Kernel slide:     0x0000000023a00000
    Kernel text base: 0xffffff8023c00000
    System model name: MacBookPro10,1 (Mac-C3EC7CD22292981F)
    System uptime in nanoseconds: 50333157760249
    last loaded kext at 27992713117823: com.apple.driver.AppleUSBTCKeyEventDriver          237.1 (addr 0xffffff7fa6078000, size 12288)
    last unloaded kext at 28062494645538: com.apple.driver.AppleUSBCDC          4.1.23 (addr 0xffffff7fa6073000, size 12288)
    loaded kexts:
    com.parallels.kext.prl_vnic          7.0 15107.796624
    com.parallels.kext.prl_netbridge          7.0 15107.796624
    com.parallels.kext.prl_hid_hook          7.0 15107.796624
    com.parallels.kext.prl_hypervisor          7.0 15107.796624
    com.parallels.kext.prl_usb_connect          7.0 15107.796624
    com.apple.filesystems.smbfs          1.8
    com.apple.driver.AppleHWSensor          1.9.5d0
    com.apple.driver.AudioAUUC          1.60
    com.apple.driver.IOBluetoothSCOAudioDriver          4.1.3f3
    com.apple.driver.IOBluetoothA2DPAudioDriver          4.1.3f3
    com.apple.iokit.IOBluetoothSerialManager          4.1.3f3
    com.apple.filesystems.autofs          3.0
    com.apple.driver.ApplePlatformEnabler          2.0.6d1
    com.apple.driver.AGPM          100.12.87
    com.apple.driver.X86PlatformShim          1.0.0
    com.apple.driver.AppleMikeyHIDDriver          122
    com.apple.driver.AppleHDA          2.3.7fc4
    com.apple.driver.AppleUpstreamUserClient          3.5.10
    com.apple.iokit.IOUserEthernet          1.0.0d1
    com.apple.GeForce          8.1.0
    com.apple.driver.AppleMCCSControl          1.1.11
    com.apple.iokit.BroadcomBluetoothHCIControllerUSBTransport          4.1.3f3
    com.apple.Dont_Steal_Mac_OS_X          7.0.0
    com.apple.driver.ApplePolicyControl          3.3.0
    com.apple.driver.AppleMikeyDriver          2.3.7fc4
    com.apple.driver.AppleSMCLMU          2.0.3d0
    com.apple.driver.AppleLPC          1.6.0
    com.apple.driver.AppleMuxControl          3.3.0
    com.apple.driver.AppleSMCPDRC          1.0.0
    com.apple.driver.AppleIntelHD4000Graphics          8.1.0
    com.apple.driver.AppleIntelFramebufferCapri          8.1.0
    com.apple.driver.AppleUSBTCButtons          237.1
    com.apple.driver.AppleUSBTCKeyboard          237.1
    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.3.1
    com.apple.driver.AppleUSBHub          5.5.5
    com.apple.driver.AppleSDXC          1.4.0
    com.apple.driver.AirPort.Brcm4331          614.20.16
    com.apple.driver.AppleAHCIPort          2.5.1
    com.apple.driver.AppleUSBEHCI          5.5.0
    com.apple.driver.AppleUSBXHCI          5.5.5
    com.apple.driver.AppleEFINVRAM          1.7
    com.apple.driver.AppleSmartBatteryManager          161.0.0
    com.apple.driver.AppleACPIButtons          1.7
    com.apple.driver.AppleRTC          1.5
    com.apple.driver.AppleHPET          1.8
    com.apple.driver.AppleSMBIOS          1.9
    com.apple.driver.AppleACPIEC          1.7
    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.iokit.IOSCSIArchitectureModelFamily          3.5.5
    com.apple.driver.DspFuncLib          2.3.7fc4
    com.apple.iokit.IOAudioFamily          1.8.9fc11
    com.apple.kext.OSvKernDSPLib          1.6
    com.apple.iokit.IOSurface          86.0.4
    com.apple.driver.X86PlatformPlugin          1.0.0
    com.apple.iokit.IOBluetoothFamily          4.1.3f3
    com.apple.nvidia.gk100hal          8.1.0
    com.apple.NVDAResman          8.1.0
    com.apple.iokit.AppleBluetoothHCIControllerUSBTransport          4.1.3f3
    com.apple.driver.AppleSMBusController          1.0.11d0
    com.apple.driver.AppleSMBusPCI          1.0.11d0
    com.apple.driver.AppleSMC          3.1.4d2
    com.apple.driver.AppleHDAController          2.3.7fc4
    com.apple.iokit.IOHDAFamily          2.3.7fc4
    com.apple.driver.AppleGraphicsControl          3.3.0
    com.apple.driver.AppleBacklightExpert          1.0.4
    com.apple.driver.IOPlatformPluginFamily          5.3.0d51
    com.apple.iokit.IOAcceleratorFamily          30.14
    com.apple.iokit.IONDRVSupport          2.3.7
    com.apple.iokit.IOGraphicsFamily          2.3.7
    com.apple.driver.AppleThunderboltDPInAdapter          1.8.9
    com.apple.driver.AppleThunderboltDPAdapterFamily          1.8.9
    com.apple.driver.AppleThunderboltPCIDownAdapter          1.2.6
    com.apple.driver.AppleUSBMultitouch          237.3
    com.apple.iokit.IOUSBHIDDriver          5.2.5
    com.apple.driver.AppleUSBMergeNub          5.5.5
    com.apple.driver.AppleUSBComposite          5.2.5
    com.apple.driver.AppleThunderboltNHI          1.6.3
    com.apple.iokit.IOThunderboltFamily          2.2.6
    com.apple.iokit.IO80211Family          522.4
    com.apple.iokit.IONetworkingFamily          3.0
    com.apple.iokit.IOUSBUserClient          5.5.5
    com.apple.iokit.IOAHCIFamily          2.3.1
    com.apple.iokit.IOUSBFamily          5.5.5
    com.apple.driver.AppleEFIRuntime          1.7
    com.apple.iokit.IOHIDFamily          1.8.1
    com.apple.iokit.IOSMBusFamily          1.1
    com.apple.security.sandbox          220.2
    com.apple.kext.AppleMatch          1.0.0d1
    com.apple.security.TMSafetyNet          7
    com.apple.driver.DiskImages          345
    com.apple.iokit.IOStorageFamily          1.8
    com.apple.driver.AppleKeyStore          28.21
    com.apple.driver.AppleACPIPlatform          1.7
    com.apple.iokit.IOPCIFamily          2.7.3
    com.apple.iokit.IOACPIFamily          1.4
    com.apple.kec.corecrypto          1.0
    System Profile:
    Model: MacBookPro10,1, BootROM MBP101.00EE.B02, 4 processors, Intel Core i7, 2.6 GHz, 16 GB, SMC 2.3f35
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In, 512 MB
    Graphics: NVIDIA GeForce GT 650M, NVIDIA GeForce GT 650M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    Memory Module: BANK 1/DIMM0, 8 GB, DDR3, 1600 MHz, 0x80AD, 0x484D5434314753364D465238432D50422020
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xEF), Broadcom BCM43xx 1.0 (5.106.98.100.16)
    Bluetooth: Version 4.1.3f3 11349, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en0
    Serial ATA Device: APPLE SSD SM256E, 251 GB
    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), 0x2512, 0x1d180000 / 3
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0262, 0x1d182000 / 5
    USB Device: BRCM20702 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x1d181000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8286, 0x1d181300 / 8

Maybe you are looking for

  • One script for multiple loaded movie clips

    Hello, I am sure that this has been asked or answered before, but could not locate the correct response. Problem: There are 20 movie clips loaded onto the stage through actionscript. I have 20 different onPress scripts to start the drag for each (whi

  • Screen recording flickering problem, plz help!

    Ever since I've upgraded to Lion i can't record me playing games (for example GTA: San Andreas) without the movie suffering from a huge amount of flickering, why? Link to example: http://www.youtube.com/watch?v=0iXRRCaJhbc

  • One payments for two company codes

    i would like to inform you how to post incoming payment when i have received amounts for differents company codes regards

  • Converting powerpoint / wmv files for import into iMovie

    I have some students [on PC] who have created some slideshows in powerpoint. I am working on a G4 PowerBook, and use iMovie HD, but am having problems converting wmv and quicktimes [using flip4mac] and then importing them into FCP or iMovie. Can anyo

  • Imovie/idvd chapters

    When I create a IDVD project from Imovie I add chapters in the project. I do not put one at the begining of the projet as recommended by Apple. In IDVD a chapter named Beginings is created. But this chapter is the whole IMOVIE project. I expected it