First keystroke after idle has a slight delay

So when I don't touch the keyboard or trackpad for about 5 seconds the first keystroke I make is delayed for about .5 secs which is annoying when recording in Ableton with the MacBook keyboard or when gaming. After the initial key press everything works fine until I don't touch the machine for 5 seconds again.
I'm on the 2012 i7 quad core MacBook so performance isn't the issue. I'm guessing this is some power management thing?

Hi! I have a similar trouble on my Macbook Air mid 2011! The first keystroke is ignored (as if my keyboad has fallen asleep)... Any ideas?

Similar Messages

  • MySQL: first connection after idle awhile is very slow

    Hello,
    The login process for my site is always very slow (45s) for the first request. Once the first login has completed and I can logout and login with different uid/pwd and it responds very quickly (1-2seconds)
    If the site is idle for awhile and then attempt a login, it is again 45s for the first login.
    This only occurs for one my sites, the others work fine.
    Any ideas? I feel like I'm shooting in the dark to find an answer.
    Thanks in advance!

    Sorry, I see now my post was confusing regarding the login.
    I mean the website's login process, for a registered user to access the site.
    It's during that process that this problem seems to occur.
    The user types in their login credentials and clicks 'submit'. The Login script checks the connection pool for an available connection and gets one if it is available. Otherwise, it will create a new direct connection. Then it executes the Login SQL, closes the statement and result set and returns the connection the pool (if applicable).
    What is confusing is that everything works so fast after this initial transaction with the long delay has completed.
    I'm wondering if perhaps the connection go idle or close after awhile and when I test them it sits on a long timeout then recreates the connections in the pool.
    I test the connection with conn.setAutoCommit( true );     and if I don't catch an SQLException I expect everything to be ok.
    I will look into your comments regarding things being swapped out, dummy queries.
    Thanks

  • In oneasset class i have created 2 assets by using of aso1 after that i acquired one asset for that i run the depreciation for first 5 periods, it has been showing depreciation for those period but if i am trying to run the depreciation for second asset i

    in on asset class i have created 2 assets by using of aso1 after that i acquired one asset for that i run the depreciation for first 5 periods, it has been showing depreciation for those period but if i am trying to run the depreciation for second asset it is not showing first 5 periods why it is not showing? Is there any reason?

    Hi
    Repeat run you can do only for the last depreciation period. For the asset which you are tryin to post depreciation from July to Jan, please check the asset value date which you have given while posting the transactions or in the asset master.
    If the asset value date is in July, then deprecaition from July - Jan will get posted in the current month depreciation in total. You will not be able to post depreciation individually month wise using AFAB.
    REgards
    Malathi

  • Short Clicking noise when resuming pc after it has been idle

    This isn't really a problem just something that is annoying me. When going to my pc after it has been sitting idle, (not hibernating nor do I have the hardisks turnoff ever) I notice a one time short clicking noise from the box. To me it sounds like some extra voltage is being sent somewhere. It has never caused a problem and my rig is and has been stable since I built it. I did have a cheapo powersupply blow up on me so I've kinda been tuned in to that. Anyone know what I'm referring to? Thanks.

    It is a non issue really...I've had alot of machines do this...it is the HD that's doing it and some of them I've seen *especially the older drives* did it all the time...they have a spot that they rest the heads at and when you're away from the machine it parks it there...then it sets a safety level on it and when you come back it doesn't always wait for the safety lever to unegage and that is the click you hear...I don't know if they still do this or not but that click is common...
    Sometimes tho that click, to me, means that the drive is on its way out...but that hasn't been the norm...
    Cheers!! 8)

  • Problems with the slight delay of keyPressed.

    Hi all!
    I just joined the wonderful sdn network, so HELLO EVERYONE :D
    I studyed some java in unversity, but never in depth, and ive recently found myself yearning after it, so recently i decided to try and teach myself!
    Unfortuantly ive hit abit of a problem, im trying to make a pacman game, hopfully develop it beyond the original and make it more innovative.
    Ive come across two problems
    1. My applet doesnt seem to have any focus until ive clicked onto it - i cant figure out what needs the focus and which focus method i should use or where the code should go!
    2. Although ive got my pacman displayed with a nice munching motion (which im quite proud of ^_^ ) and he moves when the specific keys are pressed, theres a slight delay when i try and change direction, or when i first keyPress. Hopefully you can see what i mean when you run my code, or maybe you already know what im talking about!
    I have a feeling its to do with the keyPressed code, since it only kicks in when the key is down, rather then when its keyDowning(if thats even a word!) is there a way to remove that delay so movement is seamless?
    So id be very grateful if you could advise me on what my first mistake was, and what i could do with my second problem!
    Thank you, my code is below, and please feel free to share some POSTIVE critisim, on my code, or advice on what steps to take next or in coding in general!
    CHEERS!
    sskenth
    4 classes - AnimationThread, Pacman, PaintSurface, Room
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    class AnimationThread extends Thread
         JApplet c;
         int threadSpeed = 20; // this allows the pacman speed to be reduced i.e. negative slow pill... change to 100 for slow!
         public AnimationThread(JApplet c)
              this.c=c;
         public void run()
              while(true)
                   c.repaint();
                   try
                        Thread.sleep(threadSpeed);
                   catch(InterruptedException ex)
                        //swallow the exception
    import java.awt.geom.*;
    import java.awt.event.*;
    class Pacman extends Arc2D.Float //implements KeyListener //setArc(double x, double y, double w, double h, double angSt, double angExt, int closure)
              private int diameter;
              private int x_speed,y_speed;
              private int width = Room.WIDTH;
              private int height = Room.HEIGHT;
              private     int mouth = 10;// mouth is the amount it opens by! -1 is opening, +1 is closing
                             // mouth - =1 makes it spin!
              public Pacman(int diameter)
                   super((int)(Math.random() * (Room.WIDTH - 20) + 1), (int)(Math.random() * (Room.HEIGHT - 20) + 1),diameter,diameter,210,300,2);
                   this.diameter = diameter;
                   //this.x_speed = (int)(Math.random()*5+1);
                   //this.y_speed = (int)(Math.random()*5+1);
                   this.x_speed = 10;
                   this.y_speed = 10;
         public void move(int e)
                   if(e == KeyEvent.VK_UP)
                   this.setAngleStart(120);
                   super.y -=y_speed;
                   if(e == KeyEvent.VK_DOWN)
                   this.setAngleStart(300);
                   super.y +=y_speed;
                   if(e == KeyEvent.VK_LEFT)
                   this.setAngleStart(210);
                   super.x -=x_speed;
                   if(e == KeyEvent.VK_RIGHT)
                   this.setAngleStart(30);
                   super.x +=x_speed;
                   //System.out.println(direction);
              public void mouth()
                        if(this.getAngleExtent()  >= 360)
                        mouth = -10;
                        if(this.getAngleExtent()  <= 270)
                        mouth = 10;
                   double angExt = this.getAngleExtent();
                   this.setAngleExtent(angExt +=mouth);
                   //     System.out.println(getAngleExtent());
    import java.awt.event.*;
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.util.*;
    class PaintSurface extends JComponent
              public ArrayList<Pacman> pacmans = new ArrayList<Pacman>();
              public static Pacman pacman;
              public PaintSurface()
                    pacman = new Pacman(50); //diameter of pacman
                   //for(int i = 0; i <10; i++)
                        //pacmans.add(new Pacman(50));
              public void paint (Graphics g)
                   Graphics2D g2 = (Graphics2D)g;
                   g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
                   //g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.50F)); //adds transparency
                   g2.setColor(Color.YELLOW);
                   //for(Pacman pacman: pacmans)
                        //pacman.move();
                        pacman.mouth();
                        g2.fill(pacman);
    import java.applet.*;
    import java.awt.*;
    import javax.swing.*;
    import java.awt.geom.*;
    import java.awt.event.*;
    public class Room extends JApplet implements KeyListener
              public static final int WIDTH = 1000;
              public static final int HEIGHT = 300;
              private PaintSurface canvas;
              public void init()
                   this.setSize(WIDTH, HEIGHT);
                   canvas = new PaintSurface();
                   this.add(canvas,BorderLayout.CENTER);
                   Thread t = new AnimationThread(this);
                   t.start();
                   addKeyListener(this);
                   //canvas.requestFocus();
                   this.requestFocusInWindow();
              //frame.pack();  //Realize the components.
                  //This button will have the initial focus.
                 // button.requestFocusInWindow();
              public void keyReleased(KeyEvent e)
                             //System.out.println("KeyRELEASED "+e);
                             //int keyCode = e.getKeyCode();
                             //     PaintSurface.pacman.move(keyCode);
                        public void keyPressed(KeyEvent e)
                        //System.out.println("KeyRELEASED "+e);
                        int keyCode = e.getKeyCode();
                                  PaintSurface.pacman.move(keyCode);
                        public void keyTyped(KeyEvent e)

    Well i did as you both said, and it worked! thought id just put the code up for anyone who was wondering what it looked like, just replace the pacman class above with this new one and start the thread!
    import java.awt.geom.*;
    import java.awt.event.*;
    class Pacman extends Arc2D.Float implements Runnable //implements KeyListener //setArc(double x, double y, double w, double h, double angSt, double angExt, int closure)
              private int diameter;
              public int x_speed,y_speed;
              private int width = Room.WIDTH;
              private int height = Room.HEIGHT;
              private     int mouth = 10;// mouth is the amount it opens by! -1 is opening, +1 is closing
                             // mouth - =1 makes it spin!
              public static String direction;
              public Pacman(int diameter)
                   //super((int)(Math.random() * (Room.WIDTH - 20) + 1), (int)(Math.random() * (Room.HEIGHT - 20) + 1),diameter,diameter,210,300,2);
                   super(100 , 100,diameter,diameter,210,300,2);
                   this.diameter = diameter;
                   //this.x_speed = (int)(Math.random()*5+1);
                   //this.y_speed = (int)(Math.random()*5+1);
                   this.x_speed = 10;
                   this.y_speed = 10;
                   //Thread t = new GameLoop(this);
                   //t.start();
         public void move(int e)
                   if(e == KeyEvent.VK_UP)
                   this.setAngleStart(120);
                   direction = "UP";
                   //movement();
                   //super.y -=y_speed;
                   if(e == KeyEvent.VK_DOWN)
                   this.setAngleStart(300);
                   direction = "DOWN";
                   //movement();
                   //super.y +=y_speed;
                   if(e == KeyEvent.VK_LEFT)
                   this.setAngleStart(210);
                   direction = "LEFT";
                   //movement();
                   //super.x -=x_speed;
                   if(e == KeyEvent.VK_RIGHT)
                   this.setAngleStart(30);
                   direction = "RIGHT";
                   //movement();
                   //super.x +=x_speed;
         /*public void move(String s)
                   if(direction == "UP")
                   super.y -=y_speed;
                   if(direction == "DOWN")
                   super.y +=y_speed;
                   if(direction == "LEFT")
                   super.x -=x_speed;
                   if(direction == "RIGHT")
                   super.x +=x_speed;
              public void mouth()
                        if(this.getAngleExtent()  >= 360)
                        mouth = -10;
                        if(this.getAngleExtent()  <= 270)
                        mouth = 10;
                   double angExt = this.getAngleExtent();
                   this.setAngleExtent(angExt +=mouth);
                   //     System.out.println(getAngleExtent());
              public void movement()
                   if(direction == "UP")
                   super.y -=y_speed;
                   if(direction == "DOWN")
                   super.y +=y_speed;
                   if(direction == "LEFT")
                   super.x -=x_speed;
                   if(direction == "RIGHT")
                   super.x +=x_speed;
                        if((direction == null) || (direction  ==""))
         public void run()
              while(true)
                        movement();
                   if((direction == null) || (direction  ==""))
                   try
                        Thread.sleep(20);
                   catch(InterruptedException e)
    }

  • 8500A Plus Won't print after idle 20 mins

    Windows 7, 64 bit, no service pack yet. Tried updating firmware, but by computer grays out the printer option.  This is my THIRD printer from HP (exact same model) that has had the exact same issue.  Must be a software issue, but can't find it.  Printer won't print after idle for 20 mins.  Goes into printer que, but doesn't complete.  Issue started Jan 2, no big changes to computer at time.  Has anyone had this issue that can help?  I'm about ready to go buy a Brother.  Thanks

    The first thing I would do is follow step six in this document to set a static IP: http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c02790693&cc=ad&dlc=en&lc=en&jumpid=reg_r1002_us​...
    When it askes for DNS information, enter in Google's DNS. Preferred DNS = 8.8.8.8 Alt DNS = 8.8.4.4
    -------------How do I give Kudos? | How do I mark a post as Solved? --------------------------------------------------------

  • Early 201115" MBP 2.2 i7 is locking up after idle

    I have an Early 2011 MBP 2.2 i7, 8GB RAM, AMD Radeon HD 6750M 1024MB graphics w/ 10.8.5 OS X.
    After idleing for 10 - 15 minutes, I go to open an app and get the spinning wheel of death.  I have to force it off and reboot.  If I keep using it from the start it doesnt seem to lock up as easily.  When I took it to the Apple store they tested the hard drives and OS X structure and everything came back clean.  Any idea why this would be happening?  Logic board? Video Card? OS X?  I do not want to go buy a new MBP.  (Used mainly for DJing)
    Main HD 256GB SSD
    OWC Data doubler 750GB 7200 RPM in optical drive slot  (also reproduced with the data doubler unplugged)

    It did lock up again. 
    Here is step one, I will delete all the repeats.
    11/14/13 12:55:11.000 PM bootlog[0]: BOOT_TIME 1384451711 0
    Deleted post messages (passed)
    11/14/13 12:55:16.030 PM configd[17]: bootp_session_transmit: bpf_write(en1) failed: Network is down (50)
    11/14/13 12:55:16.030 PM configd[17]: DHCP en1: INIT-REBOOT transmit failed
    11/14/13 12:55:16.036 PM WindowServer[84]: Session 256 retained (2 references)
    11/14/13 12:55:16.036 PM WindowServer[84]: Session 256 released (1 references)
    11/14/13 12:55:16.088 PM WindowServer[84]: Session 256 retained (2 references)
    11/14/13 12:55:16.096 PM WindowServer[84]: init_page_flip: page flip mode is on
    11/14/13 12:55:16.854 PM digest-service[106]: label: default
    11/14/13 12:55:16.854 PM digest-service[106]:           dbname: od:/Local/Default
    11/14/13 12:55:16.854 PM digest-service[106]:           mkey_file: /var/db/krb5kdc/m-key
    11/14/13 12:55:16.854 PM digest-service[106]:           acl_file: /var/db/krb5kdc/kadmind.acl
    11/14/13 12:55:16.873 PM aosnotifyd[102]: bootstrap_look_up failed (44e)
    11/14/13 12:55:16.936 PM digest-service[106]: digest-request: uid=0
    11/14/13 12:55:17.022 PM apsd[78]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    11/14/13 12:55:17.044 PM rpcsvchost[108]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    11/14/13 12:55:17.050 PM digest-service[106]: digest-request: init request
    11/14/13 12:55:17.058 PM digest-service[106]: digest-request: init return domain: BUILTIN server: PANCRAZ-MACBOOK-PRO
    11/14/13 12:55:17.194 PM coreservicesd[33]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    11/14/13 12:55:17.261 PM fseventsd[66]: Logging disabled completely for device:1: /Volumes/Recovery HD
    11/14/13 12:55:17.324 PM WindowServer[84]: mux_initialize: Mode is dynamic
    11/14/13 12:55:17.000 PM kernel[0]: en1: 802.11d country code set to 'US'.
    11/14/13 12:55:17.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    11/14/13 12:55:17.000 PM kernel[0]: AppleLMUController found an AG vendor product (0x9cb7), notifying SMC.
    11/14/13 12:55:17.356 PM WindowServer[84]: GLCompositor enabled for tile size [256 x 256]
    11/14/13 12:55:17.356 PM WindowServer[84]: CGXGLInitMipMap: mip map mode is on
    11/14/13 12:55:17.386 PM WindowServer[84]: WSMachineUsesNewStyleMirroring: false
    11/14/13 12:55:17.387 PM WindowServer[84]: Display 0x04272dc0: GL mask 0x9; bounds (0, 0)[1680 x 1050], 42 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cb7, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009cb70000000004272dc0
    11/14/13 12:55:17.387 PM WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    11/14/13 12:55:17.387 PM WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    11/14/13 12:55:17.390 PM WindowServer[84]: Created shield window 0x5 for display 0x04272dc0
    11/14/13 12:55:17.390 PM WindowServer[84]: Created shield window 0x6 for display 0x003f003e
    11/14/13 12:55:17.390 PM WindowServer[84]: Created shield window 0x7 for display 0x003f003d
    11/14/13 12:55:17.393 PM WindowServer[84]: Display 0x04272dc0: GL mask 0x9; bounds (0, 0)[1680 x 1050], 42 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9cb7, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009cb70000000004272dc0
    11/14/13 12:55:17.393 PM WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (2704, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    11/14/13 12:55:17.393 PM WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (2705, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    11/14/13 12:55:17.393 PM WindowServer[84]: CGXPerformInitialDisplayConfiguration
    11/14/13 12:55:17.393 PM WindowServer[84]:   Display 0x04272dc0: MappedDisplay Unit 0; Alias(0, 0x9); Vendor 0x610 Model 0x9cb7 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1680 x 1050], Rotation 0, Resolution 1
    11/14/13 12:55:17.393 PM WindowServer[84]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2704,0)[1 x 1], Rotation 0, Resolution 1
    11/14/13 12:55:17.393 PM WindowServer[84]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2705,0)[1 x 1], Rotation 0, Resolution 1
    11/14/13 12:55:17.393 PM WindowServer[84]: CGXMuxBoot: Boot normal
    11/14/13 12:55:17.557 PM WindowServer[84]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x00000007, accelerator 0x000045d3, unit 0, caps QEX|QGL|MIPMAP, vram 1024 MB
    11/14/13 12:55:17.558 PM WindowServer[84]: GLCompositor: GL renderer id 0x01021b06, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    11/14/13 12:55:17.558 PM WindowServer[84]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000008, accelerator 0x0000311f, unit 3, caps QEX|QGL|MIPMAP, vram 451 MB
    11/14/13 12:55:17.561 PM WindowServer[84]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000008, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    11/14/13 12:55:17.565 PM loginwindow[61]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    11/14/13 12:55:17.579 PM hidd[65]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    11/14/13 12:55:17.631 PM WindowServer[84]: Unable to open IOHIDSystem (e00002bd)
    11/14/13 12:55:17.702 PM WindowServer[84]: Created shield window 0x8 for display 0x04272dc0
    11/14/13 12:55:17.702 PM WindowServer[84]: Display 0x04272dc0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    11/14/13 12:55:17.724 PM launchctl[131]: com.apple.findmymacmessenger: Already loaded
    11/14/13 12:55:17.757 PM com.apple.SecurityServer[16]: Session 100005 created
    11/14/13 12:55:17.824 PM hidd[65]: CGSShutdownServerConnections: Detaching application from window server
    11/14/13 12:55:17.824 PM hidd[65]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    11/14/13 12:55:17.848 PM UserEventAgent[132]: cannot find useragent 1102
    11/14/13 12:55:17.000 PM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    11/14/13 12:55:17.863 PM loginwindow[61]: Login Window Started Security Agent
    11/14/13 12:55:17.991 PM SecurityAgent[139]: This is the first run
    11/14/13 12:55:17.992 PM SecurityAgent[139]: MacBuddy was run = 0
    11/14/13 12:55:18.011 PM WindowServer[84]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04272dc0 device: 0x102783b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    11/14/13 12:55:18.020 PM SecurityAgent[139]: User info context values set for admin
    11/14/13 12:55:18.154 PM com.apple.launchd[1]: (com.apple.netbiosd[54]) Exited abnormally: Hangup: 1
    11/14/13 12:55:18.452 PM loginwindow[61]: Login Window - Returned from Security Agent
    11/14/13 12:55:18.456 PM loginwindow[61]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    11/14/13 12:55:18.481 PM loginwindow[61]: USER_PROCESS: 61 console
    11/14/13 12:55:18.552 PM com.apple.launchd.peruser.501[143]: (com.apple.gamed) Ignored this key: UserName
    11/14/13 12:55:18.552 PM com.apple.launchd.peruser.501[143]: (com.apple.gamed) Ignored this key: GroupName
    11/14/13 12:55:18.552 PM com.apple.launchd.peruser.501[143]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    11/14/13 12:55:18.557 PM loginwindow[61]: Connection with distnoted server was invalidated
    11/14/13 12:55:18.569 PM distnoted[147]: # distnote server agent  absolute time: 7.966838543   civil time: Thu Nov 14 12:55:18 2013   pid: 147 uid: 501  root: no
    11/14/13 12:55:18.644 PM WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    11/14/13 12:55:18.785 PM coreaudiod[159]: Enabled automatic stack shots because audio IO is inactive
    11/14/13 12:55:18.793 PM WindowServer[84]: Created shield window 0xd for display 0x04272dc0
    11/14/13 12:55:18.794 PM WindowServer[84]: Display 0x04272dc0: MappedDisplay Unit 0; ColorProfile { 3, "MBP"}; TransferTable (256, 3)
    11/14/13 12:55:18.909 PM com.apple.launchd.peruser.501[143]: (com.apple.afpstat-qfa[179]) Exited with code: 2
    11/14/13 12:55:19.081 PM com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 7 seconds
    11/14/13 12:55:19.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 0c:85:25:c6:49:fd  MAC AUTH succeeded
    11/14/13 12:55:19.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    11/14/13 12:55:19.000 PM kernel[0]: AirPort: Link Up on en1
    11/14/13 12:55:19.000 PM kernel[0]: en1: BSSID changed to 0c:85:25:c6:49:fd
    11/14/13 12:55:19.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    11/14/13 12:55:19.181 PM com.apple.launchd.peruser.501[143]: (com.apple.mrt.uiagent[169]) Exited with code: 255
    11/14/13 12:55:19.392 PM WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    11/14/13 12:55:19.447 PM NetworkBrowserAgent[192]: Starting NetworkBrowserAgent
    11/14/13 12:55:19.474 PM apsd[78]: Unable to bootstrap_lookup connection port for 'com.apple.ubd.system-push': Unknown service name
    11/14/13 12:55:19.554 PM airportd[26]: _doAutoJoin: Already associated to “GUEST”. Bailing on auto-join.
    11/14/13 12:55:19.579 PM airportd[26]: _doAutoJoin: Already associated to “GUEST”. Bailing on auto-join.
    11/14/13 12:55:19.000 PM kernel[0]: nspace-handler-set-snapshot-time: 1384451721
    11/14/13 12:55:19.597 PM airportd[26]: _doAutoJoin: Already associated to “GUEST”. Bailing on auto-join.
    11/14/13 12:55:19.626 PM airportd[26]: _doAutoJoin: Already associated to “GUEST”. Bailing on auto-join.
    11/14/13 12:55:19.645 PM WindowServer[84]: Display 0x04272dc0: MappedDisplay Unit 0; ColorProfile { 3, "MBP"}; TransferTable (256, 3)
    11/14/13 12:55:19.716 PM WindowServer[84]: Display 0x04272dc0: MappedDisplay Unit 0; ColorProfile { 3, "MBP"}; TransferTable (256, 3)
    11/14/13 12:55:19.744 PM genatsdb[196]: ########## genatsdb Sandboxed. ##########
    11/14/13 12:55:19.998 PM com.apple.SecurityServer[16]: Session 100006 created
    11/14/13 12:55:20.704 PM SystemUIServer[157]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/14/13 12:55:20.705 PM SystemUIServer[157]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    11/14/13 12:55:21.468 PM com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 5 seconds
    11/14/13 12:55:21.469 PM com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 5 seconds
    11/14/13 12:55:21.868 PM configd[17]: network changed: v4(en1+:10.101.140.176) DNS+ Proxy+ SMB
    11/14/13 12:55:21.894 PM UserEventAgent[11]: CFPreferences: user home directory for user mobile at  is unavailable. User domains will be volatile.
    11/14/13 12:55:21.896 PM UserEventAgent[11]: Captive: en1: Probing 'GUEST'
    11/14/13 12:55:22.065 PM UserEventAgent[11]: Captive: Online (not captive)
    11/14/13 12:55:22.067 PM configd[17]: network changed: v4(en1!:10.101.140.176) DNS Proxy SMB
    11/14/13 12:55:22.100 PM genatsdb[196]: *GENATSDB* FontObjects generated = 599
    11/14/13 12:55:22.373 PM ntpd[99]: proto: precision = 1.000 usec
    11/14/13 12:55:23.632 PM com.apple.launchd[1]: (com.apple.xprotectupdater[40]) Exited with code: 252
    11/14/13 12:55:24.576 PM com.apple.time[146]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    11/14/13 12:55:24.718 PM com.apple.SecurityServer[16]: Session 100008 created
    11/14/13 12:55:31.172 PM awacsd[76]: Exiting
    11/14/13 12:55:38.754 PM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[136]) Exit timeout elapsed (20 seconds). Killing
    11/14/13 12:55:44.525 PM distnoted[219]: Bug: 12F45: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    11/14/13 12:55:45.827 PM com.apple.SecurityServer[16]: Session 100002 created
    11/14/13 12:56:28.318 PM com.apple.SecurityServer[16]: Killing auth hosts
    11/14/13 12:56:28.318 PM com.apple.SecurityServer[16]: Session 100008 destroyed
    11/14/13 12:57:18.000 PM kernel[0]: considerRebuildOfPrelinkedKernel com.apple.kext.OSvKernDSPLib triggered rebuild
    11/14/13 1:01:43.467 PM com.apple.SecurityServer[16]: Session 100009 created
    11/14/13 1:02:39.933 PM com.apple.SecurityServer[16]: Session 100010 created
    11/14/13 1:02:40.709 PM com.apple.launchd.peruser.501[143]: (0x7f96a5001360.anonymous.com.apple.dock.[203]) Unmanaged jobs may not make XPC Events requests.
    11/14/13 1:02:40.709 PM com.apple.dock.extra[203]: Event channel check-in failed: com.apple.usernotificationcenter.matching: 0x1: Operation not permitted
    11/14/13 1:02:40.711 PM com.apple.dock.extra[203]: Bug: 12F45: libxpc.dylib + 35251 [70BC645B-6952-3264-930C-C835010CCEF9]: 0x1
    11/14/13 1:02:40.711 PM com.apple.dock.extra[203]: Got bogus event on event stream listener connection. You may have called xpc_set_event_stream_handler() more than once for the same stream: <error: 0x10f59fca0> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x10f59fc20> { length = 18, contents = "Connection invalid" }
    11/14/13 1:02:42.625 PM coreaudiod[159]: Disabled automatic stack shots because audio IO is active
    11/14/13 1:02:42.892 PM coreaudiod[159]: Enabled automatic stack shots because audio IO is inactive
    11/14/13 1:06:00.476 PM com.apple.kextcache[230]: Kernel file /mach_kernel does not contain requested arch: i386
    11/14/13 1:06:03.084 PM mDNSResponder[58]: ERROR: handle_resolve_request bad interfaceIndex 1
    11/14/13 1:06:03.086 PM mDNSResponder[58]: ERROR: handle_resolve_request bad interfaceIndex 2
        Repeated Lines..........
    11/14/13 1:06:04.072 PM com.apple.usbmuxd[43]: LOCKDOWN_V2_BONJOUR_SERVICE_NAME is _apple-mobdev2._tcp,9595080f
    11/14/13 1:06:13.352 PM CVMServer[123]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    11/14/13 1:06:13.413 PM CVMServer[123]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    11/14/13 1:06:13.439 PM iTunes[246]:  AVF KeyExchange Version from driver for Certificates 1
    11/14/13 1:06:25.818 PM com.apple.kextcache[230]: Created prelinked kernel /System/Library/Caches/com.apple.kext.caches/Startup/kernelcache.
    11/14/13 1:08:53.205 PM SubmitDiagInfo[274]: Launched to submit Diagnostics and Usage
    11/14/13 1:08:59.452 PM SubmitDiagInfo[274]: SubmitDiagInfo successfully uploaded 1 diagnostic messages.
    11/14/13 1:17:40.225 PM mDNSResponder[58]: ERROR: handle_resolve_request bad interfaceIndex 1
    11/14/13 1:17:40.303 PM mDNSResponder[58]: ERROR: handle_resolve_request bad interfaceIndex 5
      Repeated lines.......
    11/14/13 1:17:41.025 PM com.apple.usbmuxd[43]: LOCKDOWN_V2_BONJOUR_SERVICE_NAME is _apple-mobdev2._tcp,9595080f
    11/14/13 1:17:50.503 PM iTunes[300]:  AVF KeyExchange Version from driver for Certificates 1
    11/14/13 1:20:00.967 PM mDNSResponder[58]: ERROR: handle_resolve_request bad interfaceIndex 1
    11/14/13 1:20:00.969 PM mDNSResponder[58]: ERROR: handle_resolve_request bad interfaceIndex 2
       Repeated lines.........
    11/14/13 1:20:01.787 PM com.apple.usbmuxd[43]: LOCKDOWN_V2_BONJOUR_SERVICE_NAME is _apple-mobdev2._tcp,9595080f
    11/14/13 1:20:11.240 PM iTunes[328]:  AVF KeyExchange Version from driver for Certificates 1
    11/14/13 3:27:26.000 PM bootlog[0]: BOOT_TIME 1384460846 0
    I hope I didnt post too many lines, I deleted repeats & what I thought was the laptop posting.
    Step 2: Latest crash report.
    Process:         usbmuxd [48]
    Path:            /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
    Identifier:      usbmuxd
    Version:         ???
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1]
    User ID:         213
    Date/Time:       2013-11-02 17:50:06.072 -0400
    OS Version:      Mac OS X 10.8.5 (12F45)
    Report Version:  10
    Sleep/Wake UUID: -------
    Anonymous UUID:                      -------
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000020
    VM Regions Near 0x20:
    -->
        __TEXT                 0000000100000000-0000000100017000 [   92K] r-x/rwx SM=COW  /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   usbmuxd                                 0x000000010000c652 0x100000000 + 50770
    1   usbmuxd                                 0x0000000100008432 0x100000000 + 33842
    2   usbmuxd                                 0x0000000100008521 0x100000000 + 34081
    3   usbmuxd                                 0x0000000100001d34 0x100000000 + 7476
    4   com.apple.framework.IOKit               0x00007fff8ad86e29 IODispatchCalloutFromCFMessage + 332
    5   com.apple.CoreFoundation                0x00007fff8dc04e40 __CFMachPortPerform + 288
    6   com.apple.CoreFoundation                0x00007fff8dc04d09 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 41
    7   com.apple.CoreFoundation                0x00007fff8dc04a49 __CFRunLoopDoSource1 + 153
    8   com.apple.CoreFoundation                0x00007fff8dc37c02 __CFRunLoopRun + 1826
    9   com.apple.CoreFoundation                0x00007fff8dc370e2 CFRunLoopRunSpecific + 290
    10  com.apple.CoreFoundation                0x00007fff8dc45dd1 CFRunLoopRun + 97
    11  usbmuxd                                 0x00000001000023dd 0x100000000 + 9181
    12  usbmuxd                                 0x00000001000016ec 0x100000000 + 5868
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8ae03d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff93175dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff931759ee _dispatch_mgr_thread + 54
    Thread 2:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff8ae03322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff8dc76f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8b068772 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8b0551a1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00000000000fc080  rdx: 0x00000000000efa40
      rdi: 0x0000000101829200  rsi: 0x00000001000197a0  rbp: 0x00007fff5fbfedc0  rsp: 0x00007fff5fbfed90
       r8: 0x0000000100209100   r9: 0x000000005a28d38a  r10: 0x0000000000000000  r11: 0x000000005a28d38a
      r12: 0xffffffffffffff90  r13: 0x00007fff5fbfefb0  r14: 0x00000001000197a0  r15: 0x0000000101829200
      rip: 0x000000010000c652  rfl: 0x0000000000010246  cr2: 0x0000000000000020
    Logical CPU: 3
    Binary Images:
           0x100000000 -        0x100016fff  usbmuxd (???) <C79555C7-6D53-3B73-95B6-37995ED06180> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/Resources/u sbmuxd
           0x100023000 -        0x100114ff7  com.apple.mobiledevice (710 - 710) <C9F18D4B-1D08-3F41-9160-3C2C4F72C07C> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
           0x100483000 -        0x10048dff7  com.apple.iokit.IOUSBLib (630.4.2 - 630.4.2) <1EC8FB6B-651B-3C4D-AFC5-0EA875445FF4> /System/Library/Extensions/IOUSBFamily.kext/Contents/PlugIns/IOUSBLib.bundle/Co ntents/MacOS/IOUSBLib
        0x7fff6cb5a000 -     0x7fff6cb8e93f  dyld (210.2.3) <6900F2BA-DB48-3B78-B668-58FC0CF6BCB8> /usr/lib/dyld
        0x7fff89200000 -     0x7fff8920bfff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8a492000 -     0x7fff8a4ccff7  com.apple.GSS (3.0 - 2.0) <423BDFCC-9187-3F3E-ABB0-D280003EB15E> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a4cd000 -     0x7fff8a4cdfff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8a4f6000 -     0x7fff8a504ff7  libkxld.dylib (2050.48.12) <B8F7ED1F-CF84-3777-9183-0A1C513DF81F> /usr/lib/system/libkxld.dylib
        0x7fff8a50c000 -     0x7fff8a54fff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff8aa52000 -     0x7fff8aa5afff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
        0x7fff8aa5b000 -     0x7fff8aa6dff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8ad82000 -     0x7fff8adf0ff7  com.apple.framework.IOKit (2.0.1 - 755.42.1) <A90038ED-48F2-3CC9-A042-53A3D7985844> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8adf1000 -     0x7fff8ae0cff7  libsystem_kernel.dylib (2050.48.12) <4B7993C3-F62D-3AC1-AF92-414A0D6EED5E> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8ae0d000 -     0x7fff8ae11fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8af62000 -     0x7fff8afefff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8aff0000 -     0x7fff8b038fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8b054000 -     0x7fff8b120ff7  libsystem_c.dylib (825.40.1) <543B05AE-CFA5-3EFE-8E58-77225411BA6B> /usr/lib/system/libsystem_c.dylib
        0x7fff8b121000 -     0x7fff8b172ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <581BF463-C15A-363B-999A-E830222FA925> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8b173000 -     0x7fff8b17efff  com.apple.CommonAuth (3.0 - 2.0) <1CA95702-DDC7-3ADB-891E-7F037ABDDA14> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8b17f000 -     0x7fff8b230fff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8b2b0000 -     0x7fff8b581ff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8b583000 -     0x7fff8b58afff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8b58b000 -     0x7fff8b700ff7  com.apple.CFNetwork (596.5 - 596.5) <22372475-6EF4-3A04-83FC-C061FE4717B3> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8b701000 -     0x7fff8b70efff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff8c01d000 -     0x7fff8c056ff7  libssl.0.9.8.dylib (47.2) <46DF85DC-18FB-3108-91F6-52AE3EBF2347> /usr/lib/libssl.0.9.8.dylib
        0x7fff8c59a000 -     0x7fff8c5fdfff  com.apple.audio.CoreAudio (4.1.2 - 4.1.2) <FEAB83AB-1DE5-3813-BA48-7A7F2374CCF0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8c8fa000 -     0x7fff8c962fff  libvDSP.dylib (380.10) <3CA154A3-1BE5-3CF4-BE48-F0A719A963BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8c963000 -     0x7fff8c965ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff8d3c2000 -     0x7fff8d3e7ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
        0x7fff8d41a000 -     0x7fff8d487ff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d4dc000 -     0x7fff8d4eaff7  libsystem_network.dylib (77.10) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff8d4eb000 -     0x7fff8d56dff7  com.apple.Heimdal (3.0 - 2.0) <ACF0C667-5ACC-382A-A998-61E85386C814> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8d70e000 -     0x7fff8db05fff  libLAPACK.dylib (1073.4) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8db06000 -     0x7fff8db87fff  com.apple.Metadata (10.7.0 - 707.12) <69E3EEF7-8B7B-3652-8320-B8E885370E56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8db9e000 -     0x7fff8dbc0ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8dbc1000 -     0x7fff8dc01ff7  com.apple.MediaKit (14 - 687) <8AAA8CC3-3ACD-34A5-9E57-9B24AD8AFD4D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8dc02000 -     0x7fff8ddecff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff8dded000 -     0x7fff8de0eff7  libCRFSuite.dylib (33) <736ABE58-8DED-3289-A042-C25AF7AE5B23> /usr/lib/libCRFSuite.dylib
        0x7fff8de0f000 -     0x7fff8de14fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff8de15000 -     0x7fff8e174fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8e175000 -     0x7fff8e18cfff  com.apple.CFOpenDirectory (10.8 - 151.10) <F7AD9844-559A-366E-8192-BB4FCF9EE7A3> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8e1fc000 -     0x7fff8e202ff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
        0x7fff8e307000 -     0x7fff8e356ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff8ea69000 -     0x7fff8ea6cff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff8ec69000 -     0x7fff8ed03fff  libvMisc.dylib (380.10) <A7F12764-A94C-36EB-88E0-F826F5AF55B4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8ed5c000 -     0x7fff8ed5dff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
        0x7fff8eda5000 -     0x7fff8ede0fff  com.apple.LDAPFramework (2.4.28 - 194.5) <7E4F2C08-0010-34AE-BC46-149B7EE8A0F5> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8ee32000 -     0x7fff8ee32fff  com.apple.vecLib (3.8 - vecLib 3.8) <6CBBFDC4-415C-3910-9558-B67176447789> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8f266000 -     0x7fff8f291fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8f587000 -     0x7fff8f589fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8f6ba000 -     0x7fff8f6e8ff7  libsystem_m.dylib (3022.6) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8f811000 -     0x7fff8f812ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
        0x7fff8f820000 -     0x7fff8f821fff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8f826000 -     0x7fff8f827ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff90b0a000 -     0x7fff90c07ff7  libxml2.2.dylib (22.3) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff90cef000 -     0x7fff90d0eff7  libresolv.9.dylib (51) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff90d10000 -     0x7fff90d15fff  com.apple.OpenDirectory (10.8 - 151.10) <3EE3D15A-3C79-3FF1-9A95-7CE2F065E542> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff910a2000 -     0x7fff910b0fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
        0x7fff910b4000 -     0x7fff913cbff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff91ee2000 -     0x7fff91ee6ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff91ef8000 -     0x7fff91efdfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff91efe000 -     0x7fff91f0bfff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff91f28000 -     0x7fff91f39ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff91f3a000 -     0x7fff91f3afff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff91f53000 -     0x7fff91f5bff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff91f5c000 -     0x7fff91f73fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff92777000 -     0x7fff92777fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff928c8000 -     0x7fff928cefff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff928e6000 -     0x7fff9294ffff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff92b73000 -     0x7fff92cc5fff  com.apple.audio.toolbox.AudioToolbox (1.9.2 - 1.9.2) <DC5F3D1B-036A-37DE-BC24-7636DC95EA1C> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff92cc6000 -     0x7fff92d2eff7  libc++.1.dylib (65.1) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff92d4b000 -     0x7fff92d4dfff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
        0x7fff92d4e000 -     0x7fff92e4bfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff92ead000 -     0x7fff92f80ff7  com.apple.DiscRecording (7.0 - 7000.2.4) <6DCA9535-E276-3D77-BEB3-296B537AA6BB> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff92ff1000 -     0x7fff9310992f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
        0x7fff93171000 -     0x7fff93186ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff93187000 -     0x7fff93196ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff935eb000 -     0x7fff935feff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff93f13000 -     0x7fff94099fff  libBLAS.dylib (1073.4) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff940f5000 -     0x7fff940f6fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff94147000 -     0x7fff94169ff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
        0x7fff941fa000 -     0x7fff94230fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff9430e000 -     0x7fff94315fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff9498d000 -     0x7fff94a7eff7  com.apple.DiskImagesFramework (10.8.3 - 345) <5C56181F-1E9F-336A-B7BB-620565A8BD6E> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff94c58000 -     0x7fff94e58fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
        0x7fff95344000 -     0x7fff95375ff7  com.apple.DictionaryServices (1.2 - 184.4) <FB0540FF-5034-3591-A28D-6887FBC220F7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff953c6000 -     0x7fff95425fff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff95518000 -     0x7fff9551efff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff9569a000 -     0x7fff9569bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff958d2000 -     0x7fff958d3ff7  libSystem.B.dylib (169.3) <5ED23C27-47AF-3C93-984A-172751CF745A> /usr/lib/libSystem.B.dylib
        0x7fff95c0e000 -     0x7fff95cb4ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <FFDDD2D8-690D-388F-A48F-4750A792D2CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff95db4000 -     0x7fff95eb6fff  libcrypto.0.9.8.dylib (47.2) <CF3BAB7E-4972-39FD-AF92-28ACAFF0873E> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff95ebc000 -     0x7fff95f08ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
        0x7fff95f09000 -     0x7fff95f16ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 372
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=93.6M resident=56.5M(60%) swapped_out_or_unallocated=37.2M(40%)
    Writable regions: Total=97.3M written=1508K(2%) resident=1600K(2%) swapped_out=0K(0%) unallocated=95.8M(98%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    MALLOC                             88.4M
    MALLOC guard page                    32K
    STACK GUARD                        56.0M
    Stack                              8780K
    VM_ALLOCATE                           8K
    __DATA                             3824K
    __LINKEDIT                         52.4M
    __TEXT                             41.3M
    __UNICODE                           544K
    shared memory                        12K
    ===========                      =======
    TOTAL                             250.9M
    System Profile:
    Model: MacBookPro8,2, BootROM MBP81.0047.B27, 4 processors, Intel Core i7, 2.2 GHz, 8 GB, SMC 1.69f4
    Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
    Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x859B, 0x435435313236344243313333392E4D313646
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x859B, 0x435435313236344243313333392E4D313646
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.17)
    Bluetooth: Version 4.1.7f2 12718, 3 service, 13 devices, 3 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: M4-CT256M4SSD2, 256.06 GB
    Serial ATA Device: Hitachi HTS727575A9E364, 750.16 GB
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfa100000 / 2
    USB Device: Numark NSFX, 0x15e4, 0x0076, 0xfa130000 / 6
    USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 5
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 7
    USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0245, 0xfa120000 / 4
    USB Device: hub_device, 0x0424  (SMSC), 0x2513, 0xfd100000 / 2
    USB Device: Numark USB Audio Device, 0x15e4, 0x0071, 0xfd120000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3
    Thanks in advance for looking at this.

  • Time machine would back up only the first time after I shut off my imac and started it up again.  Then it would fail or claim it could not locate my external Hard Drive even though it's icon was showing in the time machine dialog window.

    Time machine only ever backed up the first time it runs immediately after I start up my computer after it has been shut off.  All other back up attemps fail.  Recently it stopped recognizing the icon for my external hard drive in the time machine dialog window where you select the hard drive to back up to, and turn on and off the time machine function.  Now the external HD icon only shows up on the desk top but no longer in the dialog box. I just tried shutting the computer off and turning it on again and now the light is on, on the external hard drive but the icon does not even appear on the desk top.
    The external hard drive is a 1TB Seagate. The drive still has plenty of unused capacity.  I ran a diagnostic test on it. It said the disk needed repair but the repair function would not work. The message stated that it could not be unmounted and repair is not available because the disk can't be written to. The Mac OX utility said the disk can still be opened but can't be changed nor repaired.  The external HD is not S.M.A.R.T. supported.
    I haven't tried replacing the cable yet. Is that the next thing I should try?

    What Mac OSX version are your running ("iOS" as shown in your profile cannot run on a Mac computer)?

  • Refresh First page after returning from a framed pop-up window

    HI Can anyone help me on this technical problem.
    I have got one mainpage and from there i'm calling a popup with two frames (left, right). At frame right i'm populating the tableview.
    So when i submit(button) in tableview(right), the table contents has to be replicated in the first page and the popup has to be closed. So far it has be done successfully.
    The problem is when i return to the first page the page is not getting <b> refreshed automatically</b>. FYI, i'm not using mvc for performance reasons.
    So i need your help on how to refresh the first page, after control passes from popup.
    Here is the code, that calls the popup window
    winvar=window.open("organization.htm", 'main','height=450,width=650,status=yes,scrollbars=yes,toolbar=no,resizable=yes');

    Hi Craig & Raja,
    Let me tell thanks for your response. But your valuable solutions are not working for me. Please, check this code and please let me know that any thing went wrong.
    Here is the code
    My main page is progress.htm
    ============================
    <script language = "javascript">
        function openOrgTree(){      
           var winvar;
           winvar=window.open("organization.htm", '<b>Main</b>','height=450,width=650,status=yes,scrollbars=yes,toolbar=no,resizable=yes');
      </script>
    <htmlb:inputField id          = "InputOrgPlan"
                            showHelp    = "X"
                            onValueHelp = "javascript:openOrgTree()" />
          <% if application->i_desc is not initial.%>
          <htmlb:tableView id              = "tvX"
                           headerVisible   = "false"
                           design          = "alternating"
                           visibleRowCount = "3"
                           fillUpEmptyRows = "true"
                           columnWrapping  = "false"
                           onHeaderClick   = "MyEventHeaderClick"
                           onRowSelection  = "MyEventRowSelection"
                           keyColumn       = "Text"
                           table           = "<%= application->i_desc %>"
                           iterator        = "<%= iterate %>" />
          <% endif. %>
          </td></tr>
    organization.htm (is the frames container)
    =========================================
      <!-- frames -->
    <frameset  rows="110%,*">
        <frameset  cols="40%,*" >
            <frame name="left" src="tree.htm" marginwidth="0" marginheight="0" scrolling="No" frameborder="0">
            <frame name="right" src="table.htm" marginwidth="0" marginheight="0" scrolling="auto" frameborder="0">
    table.htm (right frame)
    ==========================
       function callSubmit()
         alert(parent.window.name);  
    // displays the name as "<b>Main</b>" which i gave at the time opening oraganization.htm
    //        parent.window.opener.refresh();
    // window.opener.location.href = window.opener.location.href ;
             window.opener.refresh();
             parent.close(); // to close the popup
    // all of the above are not working
       </script>
      <htmlb:page onLoad = "callSubmit()">
    <htmlb:button id            = "submitbutton"
                        onClick       = "myButtonClick"
                        onClientClick = "callSubmit()"
                        width         = "10"
                        text          = "Submit" />
    i need onClick to populate the internal table and onClientClick to refresh the opener.
    if event->id = 'submitbutton'.
          refresh application->i_desc.
          application->i_desc = i_desc.
    Regards
    Swaroop

  • IPhone 4s Voice Memo App has 5 second delay when the record button is pressed. When it starts recording, it goes from 0 seconds to 5 or so seconds recorded. This happens randomly and often and sometimes has the delay but starts at zero. Solution Anyone?

    After iOS 7 update, my iPhone 4s Voice Memo App has 5 second delay when the record button is pressed. When it starts recording, it goes from 0 seconds to 5 or so seconds that it shows has recorded. This happens randomly and often, sometimes it will have the 5+ second delay but starts recording at zero seconds. Besides the delay it has been working fine as far as saving and playback is concerned. I have plenty of storage on the phone itself and it NEVER had this problem before I updated to iOS 7. I've reset the phone a couple times by holding down the power and home buttons at the same time. The reason I have an issue with this is that I'm always recording song ideas, melodies, and scratch takes; what I'm saying is when I come up with an idea I need to be able to know that when I hit record it will start right then so I don't forget anything that has just popped in my mind.
    Does anyone have a solution or suggestion?
    Thanks

    After iOS 7 update, my iPhone 4s Voice Memo App has 5 second delay when the record button is pressed. When it starts recording, it goes from 0 seconds to 5 or so seconds that it shows has recorded. This happens randomly and often, sometimes it will have the 5+ second delay but starts recording at zero seconds. Besides the delay it has been working fine as far as saving and playback is concerned. I have plenty of storage on the phone itself and it NEVER had this problem before I updated to iOS 7. I've reset the phone a couple times by holding down the power and home buttons at the same time. The reason I have an issue with this is that I'm always recording song ideas, melodies, and scratch takes; what I'm saying is when I come up with an idea I need to be able to know that when I hit record it will start right then so I don't forget anything that has just popped in my mind.
    Does anyone have a solution or suggestion?
    Thanks

  • Regarding Mail:  When I return to my computer after it has gone to sleep, my accounts go offline, and are always asking me for the password.  THis is very annoying.  How can I prevent this?

    Regarding Mail:  When I return to my computer after it has gone to sleep, my accounts go offline, and are always asking me for the password.  THis is very annoying.  How can I prevent this?

    Back up all data.
    Launch the Keychain Access application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Keychain Access in the icon grid.
    Select the login keychain from the list on the left side of the Keychain Access window. If your default keychain has a different name, select that.
    If the lock icon in the top left corner of the window shows that the keychain is locked, click to unlock it. You'll be prompted for the keychain password, which is the same as your login password, unless you've changed it.
    Right-click or control-click the login entry in the list. From the menu that pops up, select Change Settings for Keychain "login". In the sheet that opens, uncheck both boxes, if not already unchecked.
    From the menu bar, select
    Keychain Access ▹ Preferences ▹ First Aid
    If the box marked Keep login keychain unlocked is not checked, check it.
    Select
    Keychain Access ▹ Keychain First Aid
    from the menu bar and repair the keychain. Quit Keychain Access.

  • Why does my iphone 3gs screen go white after it goes "to sleep" for the first time after turning it on?

    Why does my iphone 3gs screen go white after it goes "to sleep" for the first time after turning it on?
    The screen isn't broken because it works after i turn the device off and back on, but after it goes black once, it's only white again.
    But it takes the touches although it's only white, because I can answer my phone when I slide my finger on the bottom of the screen, eventhough there in not the button to see.
    This is so weird. I have already done everything I can think of that might help. But I cannot think of anything that might be causing it, because nothing has happened to the device.

    Let me know if I should start a new discussion instead of opening a new topic here.
    My wife's iPhone is the same vintage as mine 3Gs, but has never had the battery problem.  Its affliction instead is that it cannot detect WiFi networks unless it is quite close to the source.  Often, when my iPhone not only detects but shows a maximum cells connection with a network, hers cannot detect the network at all.  In contrast, her iPhone seems to detect ourcellular carrier just as well as mine does.
    Is there any help for this affliction?

  • [Solved] Xorg + fluxbox first keystroke lost

    Hi,
    Recently I've noticed a pretty strange thing. I'm running Arch with fluxbox on it and when I change workspaces my first key press after change is lost (ex. in doesn't show in urxvt). I'm using xorg-server 1.12.1-2, fluxbox 1.3.2-1, vanilla kernel 3.4.0-rc4 (64bit). It's an asus k52j laptop if it helps. The only thing I've noticed is the xev output after the workspace change.
    That's the first keystroke
    KeymapNotify event, serial 36, synthetic NO, window 0x0,
    keys: 68 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
    And shortly after the second
    KeyPress event, serial 36, synthetic NO, window 0x2400001,
    root 0x150, subw 0x0, time 1611281, (60,-19), root:(573,4),
    state 0x10, keycode 52 (keysym 0x7a, z), same_screen YES,
    XLookupString gives 1 bytes: (7a) "z"
    XmbLookupString gives 1 bytes: (7a) "z"
    XFilterEvent returns: False
    I've pressed the same key twice 'z'.
    Thanks for any help in advance,
    xartii
    Last edited by xartii (2012-05-15 21:48:16)

    Changing driver from evdev (the one with the missing first key stroke) to kbd, results in completly useless keyboard outputing strange characters. In console (runlevel 3), not a terminal in X ,everything works fine so I suppose it's not my kernel misconfiguration. Any other ideas?

  • How do i get back my stateful session bean after it has been passivated

    hi ,
    How do i get back my stateful session bean after it has been passivated by container.
    i'm confused that is it possible or not .......give me answer
    i've one stateful sessionbean which i'm accessing throgh my normal java client . now what i'm doing is when i first time call a method it is running ......then i'm shutting down the server jboss .......it is calling my ejbPassivate() method ... at this particular time client program doesn't do anything.....
    now after i restart my server i'm again calling back that business method with that last object reference.......it gives me the exception given below.....
    java.rmi.NoSuchObjectException: no such object in table
    java.rmi.NoSuchObjectException: no such object in table
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknown Source)
         at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
         at sun.rmi.server.UnicastRef.invoke(Unknown Source)
         at org.jboss.invocation.jrmp.server.JRMPInvoker_Stub.invoke(Unknown Source)
         at org.jboss.invocation.jrmp.interfaces.JRMPInvokerProxy.invoke(JRMPInvokerProxy.java:118)
         at org.jboss.invocation.InvokerInterceptor.invokeInvoker(InvokerInterceptor.java:227)
         at org.jboss.invocation.InvokerInterceptor.invoke(InvokerInterceptor.java:167)
         at org.jboss.proxy.TransactionInterceptor.invoke(TransactionInterceptor.java:46)
         at org.jboss.proxy.SecurityInterceptor.invoke(SecurityInterceptor.java:55)
         at org.jboss.proxy.ejb.StatefulSessionInterceptor.invoke(StatefulSessionInterceptor.java:106)
         at org.jboss.proxy.ClientContainer.invoke(ClientContainer.java:86)
         at $Proxy1.makeNewAcc(Unknown Source)
         at client.GanJavaClient.main(GanJavaClient.java:46)so pls tell me that is it possible to get back that session besn or not

    Stateful session beans are not persisted across restart of the EJB server instance(s) hosting them. You can't treat a Session bean as one would an entity bean.
    Chuck

  • After Firefox has been running a while, every link opens a new window

    After Firefox has been running for a while, every link starts opening in a new window. Until today, if I closed Firefox and restarted it, it would stop happening ... until it started happening again. Then today, I closed it down and restarted it, and it was STILL happening. So either I find a solution, or I stop using Firefox on my Mac.
    This is a vanilla installation - both for the Mac and Firefox. I don't use the Mac as my main computer. The Mac is running OS X 10.5 8. The problem has existed through many upgrades of Firefox. I always upgrade as requested. This last time, however may have been the killer. A new upgrade was installed right before the problem became unfixable by shutting down and restarting. I'm running Firefox 15.0. I just rebooted, however, and now (for now), it's working properly.
    I have no add-ons installed in Firefox.
    My only plug-ins are iPhotoPhotocast, QuickTime, SharePoint, and Shockwave Flash.
    I've seen multiple reports of this problem on this Web site, but no solutions. Just a generic recommendation to disable add-ons to see which one is conflicting. But I'm running no add-ons. I think there's a bug in Firefox.

    If it were an extension or theme or a Mac driver, wouldn't it cause the problem consistently? This only happens after Firefox has been running for a while. I'm using Firefox to type this reply right now, and the problem is not happening.
    And it's not because I suddenly start using some offending software. As I said, I don't use the Mac as my main computer. Usually I'll have been using my PC, I'll go back to the Mac to check my email on Firefox, and suddenly the link problem is happening. I only use the Mac to check email on the server before I download it with Outlook (on the PC) so I can delete spam on the server first.

Maybe you are looking for

  • Why is my MacBook Pro so slow?!

    I made an Etrecheck, but I am not able to interpret the results... Some help would be greatly appreciated. Thanks! Hardware Information:           MacBook Pro (13-inch, Mid 2009)           MacBook Pro - model: MacBookPro5,5           1 2.26 GHz Intel

  • Transfer details from iphone 4 to 5s

    I'm getting an iphone 5s, whats the best & quickest way to transfer everything on my iphone 4 over to it?

  • Workflow template list not appearing on P6

    Hi,      Unable to initiate work flow from Primavera. For initiating work flow we are going to my workflows tab and clicking on "+" button. Its displaying a popup with empty list. It is not displaying workflows list. and in p6 log file getting below

  • Problem with Soa suite 10.1.3.5

    Hi all, Ive installed Soa suite 10.1.3.5 on my local machine....when i deploy any new BPEL process into the server it deploys fine...but if i make any changes and redeploy the Bpel Process it fails...i enconuuter the following error..im using jdev 10

  • JMS - How to receive specific messages (by time stamp)

    Hi, I need to receive messages from a queue, but only ones that were sent in a specific time stamp (e.g. more than ten minutes ago). i have the methods receive or receiveNoWait, but I dont know how to filter the messages according to the time they we