X11 Pipeline: Extreme Thrashing

I have a graphics intensive application that I am working on, and I am getting severe thrashing while running in X. Results are excellent from an e-machine running Windows Vista.
Here's the basic idea of the program. It uses AWT (no Swing is ever referenced). There is a collection of "sprites" which were created from GraphicsDevice.createCompatibleImage() to give them the best chance at acceleration. Then there is a backbuffer, to which the program draws. It attempts to deliver higher framerates by only updating portions of the screen which are changing. Originally, this backbuffer was also created with GraphicsDevice.createCompatibleImage(), however this leads to the thrashing I mentioned earlier.
After reading through:
[Troubleshooting Guide for Java SE 6 Desktop Technologies|http://java.sun.com/javase/6/webnotes/trouble/TSG-Desktop/html/toc.html]
I managed to isolate the problem to X11 offscreen pixmaps, and running with the flag -Dsun.java2d.pmoffscreen=false removes the thrashing.
The problem I have here is that I am now confused. It seems to me that I want my sprites accelerated, but shouldn't my backbuffer also be accelerated? I'm not using antialiasing, nor alpha compositing, nor translations. I do make heavy use of setting the clip on the graphics object. Is that where my problem resides? Am I confused on the meaning of alpha compositing... does that include 1-bit transparency?
Quote from the above referenced document:
"The use of pixmaps typically results in better performance. However, in certain cases, the opposite is true. Such cases typically involve the use of operations which cannot be performed using the X protocol, such as antialiasing, alpha compositing, and transforms that are more complex than simple translation transforms.
For these operations the X11 pipeline must do the rendering using the built-in software renderer. In most cases this includes reading the contents of the pixmap to a system memory (over the network in the case of remote X server), performing the rendering, and then sending the pixels back to the pixmap. Such operations could result in extremely poor performance, especially if the X server is remote."
Could someone enlighten me here? Why are my accelerated surfaces being copied back into system memory when all I am doing is drawing accelerated surfaces onto accelerated surfaces using drawImage() and setClip().

You're totally right. I was preparing a code example, during which I discovered my mistake.
I'm still curious as to why Swing is causing a problem with off screen pixmaps in X. I've seen this problem before but I was never concerned with rapid updating of the screen so I never investigated. I think it must be Swing's backbuffer causing it, but is this a problem with the Java2D X11 pipeline, or maybe a bug somewhere else in my OS?
Here is a code example which produces the problem, running it with sun.java2d.pmoffscreen=false runs fine, but without it, X begins hogging CPU time and starves Java out resulting in pauses in execution.
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.util.*;
class SwingFail implements ActionListener {
  private static JFrame frame;
  class RefreshPanel extends JPanel {
    public RefreshPanel() {
      setPreferredSize(new Dimension(512, 512));
    public void paintComponent(Graphics g) {
      g.setColor(Color.black);
      g.fillRect(0, 0, 512, 512);
      g.setColor(Color.white);
      g.drawString(new Date().toString(), 25, 250);
  public SwingFail() {
    frame = new JFrame("Rapid Refresh");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    JPanel panel = (JPanel) frame.getContentPane();
    panel.add(new RefreshPanel());
    frame.pack();
    frame.setVisible(true);
  public void actionPerformed(ActionEvent e) {
    frame.repaint();
  public static void main(String[] args) {
    SwingFail sf = new SwingFail();
    javax.swing.Timer t = new javax.swing.Timer(1, sf);
    t.setCoalesce(false);
    t.start();
}PS This is with Java 5, and the underlying OS is in bad need of an update so I wouldn't be surprised if this issue has long since been resolved, but I'd still love to hear from someone else running X11 if this works well or not. Of course hardware performance may be a factor, but the difference in CPU time should still be evident between turning offscreen pixmaps on or off.
Edited by: DecadeOfJava on Jun 19, 2010 6:34 AM

Similar Messages

  • Obiee 11.1.1.5.0 on solaris very slow

    Has anyone experienced the below on solaris while installing the obiee 11.1.1.5.0 simple install:
    It takes almost 2 days to complete.
    $prstat -a
    NPROC     USERNAME     SWAP     RSS          MEMORY     TIME               CPU
    13      oraclebi     348M          361M          4.4%     0:48:43          7.8%
    28          root          50M          63M          0.8%     0:05:18          0.0%
    1          smmsp 1504K     6608K     0.1%     0:00:03          0.0%
    6          daemon          7448K     8792K     0.1%     0:00:04          0.0%
    Any system level parameters need to be set or check?
    thanks
    sri.

    Well the OGL pipeline is not as mature the DX one, another problem is that opengl lacks some features that would be quite helpful for java2d such as Render-to-texture (with ogl you must use pbuffers).
    Another problem is, that java2d uses the opengl-driver an a way, many drivers were not designe dfor this - they were designed for 3d-worlds not for fast 2d rendering.
    Conclusion: You should better use the X11 pipeline; or the ogl pipeline with a modern ATI or NVIDIA card.
    lg Clemens

  • Illustrator 15.0.2 extremely slow on Windows 7 Home Premium 64-bit

    Illustrator has been working nicely on my computer up until the 15.0.2 upgrade.  Now it chugs along at a snails pace and locks up/hangs frequently when switch between tools or windows.
    My system specs are:
    Windows 7 Home Premium 64-bit
    Intel i7 Q720 processor
    6GB RAM
    1GB ATI video card
    Is anybody else experiencing extremely slow performance with the 15.0.2 upgrade?

    I am having a suspisciously similar issue and I would like to elaborate a bit..
    I too have this odd issue where Illustrator works ok (though screen redraw lags) but as soon as I go between programs, whether Notepad, Acrobat or similar simple programs - Illustrator freezes for 5-10 seconds. I go back and forth a lot - looking through documents (pdfs etc.) when I draw so the annoyance is simply unbearable.
    I have used Illustrator for ages and roughly 6 months ago I bought a new PC to use at home. Its specs are:
    OS: Windows 7 Pro 64 bit
    PROC: Intel i7 930
    RAM: 12 GB OCZ PLATINUM
    GFX: ATI RADEON HD  5870
    MOBO: P6X58D
    These specs thrashes my specs at work by far and yet Illustrator BOTH CS4 and CS5 runs smooth and hazle free at the old worn out computer at work, while being close to useless at home. I have googled my eyes out and found no solution. Tried clearing the prefs, etc. - which made no difference. Disabled Aero and all other gfx consuming stuff - with absolutelu no improvement. I have even tried flagging Illustrator CS5 as Large Adress Aware... didn't help
    I can run all other Adobe CS4 and CS5 (master edition) very good!
    Can someone help - I am desperat

  • File display extremely slow with call of OLE_FLUSH_CALL standard function

    Hi,
    We are running SAP R/3 Enterprise 640 with Doculink extension.
    When trying to display PDF files stored in an SAP Archive Server, it takes quiet a while to retreive the document, while displaying it through a web browser is very fast.
    I have made a some performances tests in ST05, and the results clearly shows that the ABAP execution time takes most of the process time. When digging deeper into which function takes so many time, I can see that the standard program SAPLOLEA takes a long while on a wait for RFC call. And then when I display the source code responsible for this call, I see that the OLE_FLUSH_CALL call takes the most time.
    I have tried to look around in SAP Notes but didn't find any relevant information regarding this problem. I wondered if I would be able to find more interesting opinions on SDN.
    Thanks in advance for your help,
    Thibault

    Query returns anywhere from 6000 to 32000 rows. For each of those rows a parameter is passed in to 4 different functions to get ytd totals. When I call the functions in the in-line view but do not select from them in the main SQL, the report (oh, this is Application Express 4.0 interactive reports, just an FYI) runs fast. The report comes back in a few seconds. But when I select from the in-line view to display those ytd totals, the report runs extremely slow. I know there are the articles about context switching and how mixing SQL with PL/SQL performs poorly. So I tried a pipeline table function where the function for the ytd totals populate the columns of the pipeline table and I select from the pipeline table in the SQL query in the interactive report. That seemed to perform a little worse from what I can tell.
    Thanks for any help you can offer.

  • Synaptics: /etc/hal/fdi/policy/11-x11-synaptics doesn´t work anymore

    Hello everyone!
    Three weeks ago I installed Arch one my old "Acer Travelmate 243".
    It was my first Laptop-Install, so I was sure to experience some problems especially with the Touchpad.
    But hey, no problems at all, Touchpad worked.
    One week ago I made a system-update. Also the Kernel was updated to version 2.6.30.
    I did a reboot and everything worked ok. Everything, but not the "two-finger-scroll" on the touchpad (which I had enabled when I configured the touchpad and worked before the update).
    So I checked /etc/hal/fdi/policy/11-x11-synaptics, but everything looked like before the update.
    The problem is that "11-x11-synaptics" apparently isn´t read anymore, cause I can do whatever I like to this file and it simply doesn´t matter (Touchpad works in the standard way). BTW I don´t have a xorg.conf.
    So here are some files:
    /etc/hal/fdi/policy/11-x11-synaptics.fdi
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <deviceinfo version="0.2">
    <device>
    <match key="info.product" contains="ETPS/2 Elantech Touchpad">
    <append key="info.capabilities" type="strlist">input.touchpad</append>
    </match>
    <match key="info.capabilities" contains="input.touchpad">
    <merge key="input.x11_driver" type="string">synaptics</merge>
    <merge key="input.x11_options.TapButton1" type="string">1</merge>
    <merge key="input.x11_options.TapButton2" type="string">3</merge>
    <merge key="input.x11_options.TapButton3" type="string">2</merge>
    <merge key="input.x11_options.VertTwoFingerScroll" type="string">true</merge>
    </match>
    </device>
    </deviceinfo>
    Output of "hal-device":
    18: udi = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port_logicaldev_input'
    input.device = '/dev/input/event7' (string)
    input.product = 'PS/2 Synaptics TouchPad' (string)
    access_control.file = '/dev/input/event7' (string)
    access_control.type = 'mouse' (string)
    info.callouts.add = { 'hal-acl-tool --add-device' } (string list)
    input.x11_driver = 'evdev' (string)
    info.callouts.remove = { 'hal-acl-tool --remove-device' } (string list)
    linux.sysfs_path = '/sys/devices/platform/i8042/serio4/input/input7/event7' (string)
    info.parent = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port' (string)
    info.subsystem = 'input' (string)
    info.product = 'PS/2 Synaptics TouchPad' (string)
    info.category = 'input' (string)
    info.capabilities = { 'input', 'input.mouse', 'access_control' } (string list)
    linux.device_file = '/dev/input/event7' (string)
    info.udi = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port_logicaldev_input' (string)
    linux.hotplug_type = 2 (0x2) (int)
    input.originating_device = '/org/freedesktop/Hal/devices/platform_i8042_i8042_AUX3_port' (string)
    linux.subsystem = 'input' (string)

    I have similar problem, I have recently switched from radeon to fglrx driver and in order to do so I had to downgrade kernel to 2.6.29 and xorg-server to 1.5. After that my Alps touchpad stopped working. I also tried this method and it is no good. And there's another weird thing: if I try to read /dev/input/mouse2 vith cat and touch the touchpad I get an output which shows, that I ought to be able to use it via this device pointer. Here's my xorg.conf
    #Section "InputDevice"
    # Identifier "Serial Mouse"
    # Driver "mouse"
    # Option "Protocol" "Microsoft"
    # Option "Device" "/dev/ttyS0"
    # Option "Emulate3Buttons" "true"
    # Option "Emulate3Timeout" "70"
    # Option "SendCoreEvents" "true"
    #EndSection
    #Section "InputDevice"
    # Driver "synaptics"
    # Identifier "PS/2 Mouse"
    # Option "Device" "/dev/psaux"
    # Option "Protocol" "auto-dev"
    # Option "LeftEdge" "120"
    # Option "RightEdge" "830"
    # Option "TopEdge" "120"
    # Option "BottomEdge" "650"
    # Option "FingerLow" "14"
    # Option "FingerHigh" "15"
    # Option "MaxTapTime" "180"
    # Option "MaxTapMove" "110"
    # Option "EmulateMidButtonTime" "75"
    # Option "VertScrollDelta" "20"
    # Option "HorizScrollDelta" "20"
    # Option "MinSpeed" "0.3"
    # Option "MaxSpeed" "0.75"
    # Option "AccelFactor" "0.015"
    # Option "EdgeMotionMinSpeed" "200"
    # Option "EdgeMotionMaxSpeed" "200"
    # Option "UpDownScrolling" "1"
    # Option "CircularScrolling" "1"
    # Option "CircScrollDelta" "0.1"
    # Option "CircScrollTrigger" "2"
    #EndSection
    #Section "InputDevice"
    # Identifier "Synaptics"
    # Driver "synaptics"
    # Option "Device" "/dev/input/mouse2"
    # Option "Protocol" "auto-dev"
    # Option "Emulate3Buttons" "yes"
    # Option "LeftEdge" "120"
    # Option "RightEdge" "830"
    # Option "TopEdge" "120"
    # Option "BottomEdge" "650"
    # Option "FingerLow" "14"
    # Option "FingerHigh" "15"
    # Option "MaxTapMove" "110"
    # Option "VertScrollDelta" "20"
    # Option "HorizScrollDelta" "20"
    # Option "MinSpeed" "0.5"
    # Option "MaxSpeed" "1.5"
    # Option "SHMConfig" "true"
    #EndSection
    # Auto-generated by Archie mkxcfg
    # Auto-generated by Archie mkxcfg
    Section "ServerLayout"
    #InputDevice "USB Mouse" "CorePointer"
    #Option "AIGLX" "True"
    # Serial Mouse not detected
    # USB Mouse not detected
    Identifier "Xorg Configured"
    Screen 0 "Screen0" 0 0
    InputDevice "Keyboard0" "CoreKeyboard"
    InputDevice "PS/2 Mouse" "CorePointer"
    EndSection
    Section "Files"
    # Additional fonts: Locale, Gimp, TTF...
    # FontPath "/usr/share/lib/X11/fonts/latin2/75dpi"
    # FontPath "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
    ModulePath "/usr/lib/xorg/modules"
    FontPath "/usr/share/fonts/misc:unscaled"
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi:unscaled"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi:unscaled"
    FontPath "/usr/share/fonts/100dpi"
    FontPath "/usr/share/fonts/PEX"
    FontPath "/usr/share/fonts/cyrillic"
    FontPath "/usr/share/fonts/Type1"
    FontPath "/usr/share/fonts/ttf/western"
    FontPath "/usr/share/fonts/ttf/decoratives"
    FontPath "/usr/share/fonts/truetype"
    FontPath "/usr/share/fonts/truetype/openoffice"
    FontPath "/usr/share/fonts/truetype/ttf-bitstream-vera"
    FontPath "/usr/share/fonts/latex-ttf-fonts"
    FontPath "/usr/share/fonts/defoma/CID"
    FontPath "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
    Load "ddc" # ddc probing of monitor
    Load "dbe"
    Load "dri"
    Load "extmod"
    Load "glx"
    Load "bitmap" # bitmap-fonts
    Load "type1"
    Load "freetype"
    Load "record"
    Load "synaptics"
    EndSection
    Section "ServerFlags"
    Option "AllowMouseOpenFail" "false"
    Option "AIGLX" "True"
    Option "AutoAddDevices" "True"
    EndSection
    Section "InputDevice"
    Identifier "Keyboard0"
    Driver "kbd"
    Option "CoreKeyboard"
    Option "XkbRules" "xorg"
    Option "XkbModel" "latitude"
    Option "XkbLayout" "cz"
    Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
    Identifier "PS/2 Mouse"
    Driver "mouse"
    Option "Protocol" "Auto"
    Option "ZAxisMapping" "4 5"
    Option "Device" "/dev/psaux"
    Option "Emulate3Buttons" "true"
    Option "Emulate3Timeout" "70"
    Option "SendCoreEvents" "true"
    EndSection
    Section "InputDevice"
    Identifier "USB Mouse"
    Driver "mouse"
    Option "Device" "/dev/input/mouse2"
    Option "SendCoreEvents" "true"
    Option "Protocol" "GlidePointPS/2"
    Option "ZAxisMapping" "4 5"
    Option "Buttons" "5"
    Option "Emulate3Buttons"
    EndSection
    Section "Monitor"
    # Warning: This may fry old Monitors
    # Very conservative. May flicker.
    # VertRefresh 50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
    # Default modes distilled from
    # "VESA and Industry Standards and Guide for Computer Display Monitor
    # Timing", version 1.0, revision 0.8, adopted September 17, 1998.
    # $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
    # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
    Identifier "Monitor0"
    HorizSync 28.0 - 96.0
    VertRefresh 50.0 - 75.0
    ModeLine "640x350" 31.5 640 672 736 832 350 382 385 445 +hsync -vsync
    ModeLine "640x400" 31.5 640 672 736 832 400 401 404 445 -hsync +vsync
    ModeLine "720x400" 35.5 720 756 828 936 400 401 404 446 -hsync +vsync
    ModeLine "640x480" 25.2 640 656 752 800 480 490 492 525 -hsync -vsync
    ModeLine "640x480" 31.5 640 664 704 832 480 489 491 520 -hsync -vsync
    ModeLine "640x480" 31.5 640 656 720 840 480 481 484 500 -hsync -vsync
    ModeLine "640x480" 36.0 640 696 752 832 480 481 484 509 -hsync -vsync
    ModeLine "800x600" 36.0 800 824 896 1024 600 601 603 625 +hsync +vsync
    ModeLine "800x600" 40.0 800 840 968 1056 600 601 605 628 +hsync +vsync
    ModeLine "800x600" 50.0 800 856 976 1040 600 637 643 666 +hsync +vsync
    ModeLine "800x600" 49.5 800 816 896 1056 600 601 604 625 +hsync +vsync
    ModeLine "800x600" 56.3 800 832 896 1048 600 601 604 631 +hsync +vsync
    ModeLine "1024x768" 44.9 1024 1032 1208 1264 768 768 776 817 +hsync +vsync interlace
    ModeLine "1024x768" 65.0 1024 1048 1184 1344 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 75.0 1024 1048 1184 1328 768 771 777 806 -hsync -vsync
    ModeLine "1024x768" 78.8 1024 1040 1136 1312 768 769 772 800 +hsync +vsync
    ModeLine "1024x768" 94.5 1024 1072 1168 1376 768 769 772 808 +hsync +vsync
    ModeLine "1152x864" 108.0 1152 1216 1344 1600 864 865 868 900 +hsync +vsync
    ModeLine "1280x960" 108.0 1280 1376 1488 1800 960 961 964 1000 +hsync +vsync
    ModeLine "1280x960" 148.5 1280 1344 1504 1728 960 961 964 1011 +hsync +vsync
    ModeLine "1280x1024" 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 135.0 1280 1296 1440 1688 1024 1025 1028 1066 +hsync +vsync
    ModeLine "1280x1024" 157.5 1280 1344 1504 1728 1024 1025 1028 1072 +hsync +vsync
    ModeLine "1600x1200" 162.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 175.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 189.0 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 202.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1600x1200" 229.5 1600 1664 1856 2160 1200 1201 1204 1250 +hsync +vsync
    ModeLine "1792x1344" 204.8 1792 1920 2120 2448 1344 1345 1348 1394 -hsync +vsync
    ModeLine "1792x1344" 261.0 1792 1888 2104 2456 1344 1345 1348 1417 -hsync +vsync
    ModeLine "1856x1392" 218.3 1856 1952 2176 2528 1392 1393 1396 1439 -hsync +vsync
    ModeLine "1856x1392" 288.0 1856 1984 2208 2560 1392 1393 1396 1500 -hsync +vsync
    ModeLine "1920x1440" 234.0 1920 2048 2256 2600 1440 1441 1444 1500 -hsync +vsync
    ModeLine "1920x1440" 297.0 1920 2064 2288 2640 1440 1441 1444 1500 -hsync +vsync
    ModeLine "1800x1440" 230.0 1800 1896 2088 2392 1440 1441 1444 1490 +hsync +vsync
    ModeLine "1800x1440" 250.0 1800 1896 2088 2392 1440 1441 1444 1490 +hsync +vsync
    ModeLine "640x480" 43.2 640 680 744 848 480 481 484 509 -hsync +vsync
    ModeLine "768x576" 35.0 768 792 872 976 576 577 580 597 -hsync +vsync
    ModeLine "768x576" 42.9 768 800 880 992 576 577 580 601 -hsync +vsync
    ModeLine "768x576" 45.5 768 808 888 1008 576 577 580 602 -hsync +vsync
    ModeLine "768x576" 51.8 768 808 888 1008 576 577 580 605 -hsync +vsync
    ModeLine "768x576" 62.6 768 816 896 1024 576 577 580 611 -hsync +vsync
    ModeLine "800x600" 68.2 800 848 936 1072 600 601 604 636 -hsync +vsync
    ModeLine "1024x768" 113.3 1024 1096 1208 1392 768 769 772 814 -hsync +vsync
    ModeLine "1152x864" 81.6 1152 1216 1336 1520 864 865 868 895 -hsync +vsync
    ModeLine "1152x864" 119.7 1152 1224 1352 1552 864 865 868 907 -hsync +vsync
    ModeLine "1152x864" 143.5 1152 1232 1360 1568 864 865 868 915 -hsync +vsync
    ModeLine "1280x960" 124.5 1280 1368 1504 1728 960 961 964 1001 -hsync +vsync
    ModeLine "1280x960" 129.9 1280 1368 1504 1728 960 961 964 1002 -hsync +vsync
    ModeLine "1280x960" 179.0 1280 1376 1520 1760 960 961 964 1017 -hsync +vsync
    ModeLine "1280x1024" 191.0 1280 1376 1520 1760 1024 1025 1028 1085 -hsync +vsync
    ModeLine "1400x1050" 122.6 1400 1488 1640 1880 1050 1051 1054 1087 -hsync +vsync
    ModeLine "1400x1050" 149.3 1400 1496 1648 1896 1050 1051 1054 1094 -hsync +vsync
    ModeLine "1400x1050" 155.8 1400 1496 1648 1896 1050 1051 1054 1096 -hsync +vsync
    ModeLine "1400x1050" 179.3 1400 1504 1656 1912 1050 1051 1054 1103 -hsync +vsync
    ModeLine "1400x1050" 214.4 1400 1512 1664 1928 1050 1051 1054 1112 -hsync +vsync
    ModeLine "1600x1200" 280.6 1600 1728 1904 2208 1200 1201 1204 1271 -hsync +vsync
    Option "DPMS" "true"
    # HorizSync 28.0 - 78.0 # Warning: This may fry very old Monitors
    EndSection
    Section "Device"
    #Option "Capabilities" "0x00000000"
    #Option "VideoOverlay" "on"
    #Option "OpenGLOverlay" "off"
    #Option "FSAAScale" "0"
    Identifier "Card0"
    Driver "radeon"
    VendorName "All"
    BoardName "All"
    Option "DRI" "True"
    Option "NoDDC" "True"
    Option "XAANoOffscreenPixmaps" "True"
    Option "EnablePageFlip" "True"
    Option "RenderAccel" "True"
    Option "AccelMethod" "EXA"
    #Option "FSAAEnable" "off"
    EndSection
    Section "Device"
    Identifier "Card1"
    Driver "fglrx"
    VendorName "All"
    BoardName "All"
    Option "NoDDC" "true"
    Option "Centermode" "off"
    Option "VideoOverlay" "on"
    Option "OpenGLOverlay" "off"
    Option "OverlayOnCRT2" "0"
    Option "PseudoColorVisuals" "off"
    Option "UseFastTLS" "off"
    BusID "PCI:1:0:0"
    EndSection
    Section "Device"
    Identifier "Card2"
    Driver "fglrx"
    VendorName "All"
    BoardName "All"
    Option "DRI" "True"
    Option "NoDDC" "True"
    Option "XAANoOffscreenPixmaps" "True"
    Option "EnablePageFlip" "True"
    Option "RenderAccel" "True"
    Option "AccelMethod" "EXA"
    Option "FSAAEnable" "off"
    Option "Capabilities" "0x00000000"
    Option "VideoOverlay" "on"
    Option "OpenGLOverlay" "off"
    Option "FSAAScale" "0"
    BusID "PCI:1:0:0"
    EndSection
    Section "Screen"
    # SubSection "Display"
    # Depth 16
    # Modes "1024x768" "800x600" "640x480"
    # EndSubSection
    Identifier "Screen0"
    Device "Card2"
    Monitor "Monitor0"
    DefaultDepth 24
    Option "DisableGLXRootClipping" "True"
    Option "AddARGBGLXVisuals" "True"
    Option "LIBGL_ALWAYS_INDIRECT" "True"
    SubSection "Display"
    Depth 24
    Modes "1024x768" "800x600" "640x480"
    EndSubSection
    EndSection
    Section "DRI"
    # Group 0
    Mode 0666
    EndSection
    Section "Extensions"
    # Option "DAMAGE" "True"
    Option "Composite" "Enable"
    EndSection
    and here's my /etc/hal/fdi/policy/11-x11-synaptics.fdi
    <?xml version="1.0" encoding="UTF-8"?>
    <deviceinfo version="0.2">
    <device>
    # <match key="info.product" contains="Synaptics TouchPad">
    <match key="info.product" contains="AlpsPS/2 ALPS GlidePoint">
    <merge key="input.x11_driver" type="string">synaptics</merge>
    <merge key="input.x11_options.AlwaysCore" type="string">true</merge>
    <merge key="input.x11_options.VertEdgeScroll" type="string">true</merge>
    <merge key="input.x11_options.HorizEdgeScroll" type="string">true</merge>
    <merge key="input.x11_options.TapButton1" type="string">1</merge>
    <merge key="input.x11_options.TapButton2" type="string">2</merge>
    <merge key="input.x11_options.TapButton3" type="string">3</merge>
    <merge key="input.x11_options.protocol" type="string">event</merge>
    <merge key="input.x11_options.touchpadoff" type="string">0</merge>
    <merge key="input.x11_options.shmconfig" type="string">on</merge>
    </match>
    </device>
    </deviceinfo>
    It really bugs me. I can use it only in windows
    EDIT: my pointing stick works though.
    Last edited by sDoky (2009-07-07 17:02:58)

  • MacBook pro i7 quad is extremely sluggish when running CS5

    I get a Beachball when performing simple operations in Flash CS5 on my brand new MacBook pro i7 quad. sometimes up to 5 minutes. Activity monitor shows one processor maxed during beachball. Very frustrating. Finder shows flash not responding until the beachball disappears.  Also takes extremely long to open Adobe files. Running 10.6.7   Please help ! Thank you !

    Hanan from New York wrote:
    what is considered a "high" Swap Used?
    I've never seen/heard a rule of thumb for that size, but the lower the better, higher is worse. A few MB is basically nothing. When you get up into GBs, that's noticeable. Dozens of GBs or higher is not good.
    And this is your lucky night, you get to read about thrashing! Now doesn't that sound like fun?
    http://support.apple.com/kb/HT1342
    http://www.thexlab.com/faqs/lackofram.html
    http://querieslinux.blogspot.com/2009/07/what-is-difference-between-swapping-and .html

  • Apex3.2.1 pipelined functions with parameters send cpu to 100 percent

    I have just installed 11g and exported a schema from 10g into it.
    When I run Apex3.2.1 and open a page with a flash chart that running off a table object populated by a pipelined function the CPU goes in overload 100%.
    I have tracked the problem to parameters on the pipelined function if I use bind parameters( :P640_YEARS, :P640_EMPLOYER_ID) then the problem happens but if I hard code values all is fine (2010,99).
    This happens with every flash chart we have, which makes our application and database unusable.
    Any ideas.
    Derek

    Thanks very much for the posts, I took the opportunity to upgrade to Apex 4.0.2 as suggested by Patrick and the application works fine again now.
    Interestingly I did re-analyse the statistics but only as a reaction to the problem, should have been done regardless.
    I did consider re-writing the pipelined functions but to be honest it would have been difficult as they are extremely complex, I wasn't looking forward to the task. I have become quite a fan of pipelined functions for building flash charts, dash boards extra, its as always about tuning the sql.
    Thanks very to all
    Derek
    Edited by: 835735 on Feb 10, 2011 1:50 PM

  • My EtreCheck from my extremely unresponsive iMac!

    My EtreCheck from my extremely unresponsive & slow iMac. Help would really be appreciated...Thanks!
    Problem description:
    iMac runs extremely slow, lots of appearances of the pretty little spinning lollipop!
    EtreCheck version: 2.0.11 (98)
    Report generated December 3, 2014 at 5:23:51 PM MST
    Hardware Information: ℹ️
      iMac (27-inch, Mid 2010) (Verified)
      iMac - model: iMac11,3
      1 2.93 GHz Intel Core i7 CPU: 4-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1333 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1333 MHz ok
      BANK 0/DIMM1
      4 GB DDR3 1333 MHz ok
      BANK 1/DIMM1
      4 GB DDR3 1333 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      ATI Radeon HD 5750 - VRAM: 1024 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 8:55:52
    Disk Information: ℹ️
      Hitachi HDS722020ALA330 disk0 : (2 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Steve (disk0s2) /  [Startup]: 2.00 TB (179.96 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      HL-DT-STDVDRW  GA32N 
    USB Information: ℹ️
      HGST G-DRIVE 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk3s1) <not mounted> : 210 MB
      Steve Work BU (disk3s2) /Volumes/Steve Work BU : 2.00 TB (12.08 GB free)
      Prolific Technology Inc. USB-SATA Bridge 4.25 GB
      S.M.A.R.T. Status: Verified
      disk4s1 (disk4s1) <not mounted> : 32 KB
      2014 178 BFP DVD (disk4s2) /Volumes/2014 178 BFP DVD : 4.24 GB (0 B free)
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple, Inc. Keyboard Hub
      Logitech USB Receiver
      Apple, Inc Apple Keyboard
      Western Digital My Passport 0748 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted> : 210 MB
      MediaUSB4 (disk2s2) /Volumes/MediaUSB4 : 2.00 TB (1.91 TB free)
      Apple Computer, Inc. IR Receiver
      Apple Inc. Built-in iSight
    Firewire Information: ℹ️
      Seagate GoFlex Desk Mac 800mbit - 800mbit max
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted> : 315 MB
      Steve WorkBU (disk1s2) /Volumes/Steve WorkBU : 4.00 TB (1.40 TB free)
    Configuration files: ℹ️
      /etc/sysctl.conf - Exists
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/DiskWarrior.app
      [not loaded] com.alsoft.Preview (4.2) Support
      /Applications/Transmit.app
      [not loaded] com.panic.TransmitDisk.transmitdiskfs (4.0.0 - SDK 10.5) Support
      /Library/Application Support/HASP/kexts
      [not loaded] com.aladdin.kext.aksfridge (1.0.2) Support
      /Library/Extensions
      [loaded] com.logmein.hamachi (1.0.0) Support
      [loaded] com.squirrels.airparrot.framebuffer (3 - SDK 10.8) Support
      [loaded] com.squirrels.driver.AirParrotSpeakers (1.8 - SDK 10.8) Support
      /System/Library/Extensions
      [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
      [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
      [loaded] com.Cycling74.driver.Soundflower (1.5.2) Support
      [loaded] com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) Support
      [loaded] com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) Support
      [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
      [not loaded] com.dymo.usbprinterclassdriver.kext (1.1 - SDK 10.5) Support
      [loaded] com.hzsystems.terminus.driver (4) Support
      [loaded] com.makemkv.kext.daspi (1) Support
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.2 - SDK 10.4) Support
      /System/Library/Extensions/Belcarra.USBLAN_netpart.kext/Contents/PlugIns
      [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
      /System/Library/Extensions/Belcarra.USBLAN_usbpart.kext/Contents/PlugIns
      [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
      /System/Library/Extensions/RemoteControl.USBLAN_usbpart.kext/Contents/PlugIns
      [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
      /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.2 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.2 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.2 - SDK 10.4) Support
      /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
      [not loaded] com.roxio.TDIXController (2.0) Support
    Startup Items: ℹ️
      ES1000Service: Path: /Library/StartupItems/ES1000Service
      ProTec6: Path: /Library/StartupItems/ProTec6
      ProTec6b: Path: /Library/StartupItems/ProTec6b
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.adobe.AdobeCreativeCloud.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [loaded] com.efi.analytic.wxwidgets.plist Support
      [failed] com.efi.FolderMapDockAgent.plist Support
      [running] com.efi.FSMAgent.plist Support
      [running] com.Logitech.Control Center.Daemon.plist Support
      [running] com.logmein.hamachimb.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [invalid?] com.quark.quarkupdate.agent.plist Support
      [running] com.seagate.SeagateStorageGauge.plist Support
      [invalid?] com.teamviewer.teamviewer.plist Support
      [invalid?] com.teamviewer.teamviewer_desktop.plist Support
      [loaded] org.macosforge.xquartz.startx.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.adobe.versioncueCS3.plist Support
      [running] com.aladdin.aksusbd.plist Support
      [invalid?] com.dymo.pnpd.plist Support
      [running] com.efi.FDCDaemon.plist Support
      [running] com.efi.FRSMailboxSyncServiceDaemon.plist Support
      [running] com.efi.lmgr.plist Support
      [running] com.efi.ofasq.plist Support
      [running] com.fitbit.galileod.plist Support
      [running] com.logmein.hamachi.plist Support
      [loaded] com.noiseindustries.FxFactory.FxPlug.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [loaded] com.quark.quarkupdate.plist Support
      [invalid?] com.teamviewer.teamviewer_service.plist Support
      [loaded] org.macosforge.xquartz.privileged_startx.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.citrixonline.GoToMeeting.G2MUpdate.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.memeo.Memeod.plist Support
      [running] com.micromat.SMSDaemon.plist Support
    User Login Items: ℹ️
      Suitcase Fusion Application (/Applications/Extensis Suitcase Fusion/Suitcase Fusion.app)
      AdobeResourceSynchronizer Application (/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/Support/AdobeResourceSynchronizer.app)
      Fitbit Connect Menubar Helper Application (/Applications/Fitbit Connect.app/Contents/MacOS/Fitbit Connect Menubar Helper.app)
      DragThing Application (/Applications/DragThing.app)
      XtraFinder Application (/Applications/XtraFinder.app)
      SMART Alert ApplicationHidden (/Library/Application Support/SpeedTools Utilities Support/STU_Helper/SMART Alert.app)
    Internet Plug-ins: ℹ️
      DYMO NPAPI Addin: Version: 1.0 - SDK 10.4 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 Support
      DYMO Safari Addin: Version: (null) - SDK 10.4 Support
      Flip4Mac WMV Plugin: Version: 2.2.0.49 Support
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      FlashPlayer-10.6: Version: 15.0.0.239 - SDK 10.6 Support
      Silverlight: Version: 5.1.20913.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.239 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      CouponPrinter-FireFox_v2: Version: 1.1.10 - SDK 10.6 Support
      GarminGpsControl: Version: 2.6.4.0 Release Support
      JavaAppletPlugin: Version: Java 7 Update 67 Check version
    User Internet Plug-ins: ℹ️
      WebEx64: Version: 1.0 - SDK 10.6 Support
      Move_Media_Player: Version: npmnqmp 071701000001 Support
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
      Unity Player: Version: UnityPlayer version 1.6.2 Support
      RealPlayer Plugin: Version: (null) Support
    Safari Extensions: ℹ️
      AdBlock
      Add To Amazon Wish List
    Audio Plug-ins: ℹ️
      DVCPROHDAudio: Version: 1.3.2
    3rd Party Preference Panes: ℹ️
      Flash Player  Support
      Java  Support
      Logitech Control Center  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Mobile backups: OFF
      Auto backup: YES
      Volumes being backed up:
      Steve: Disk size: 2.00 TB Disk used: 1.82 TB
      Destinations:
      Steve Work BU [Local]
      Total size: 2.00 TB
      Total number of backups: 33
      Oldest backup: 2014-09-02 16:14:12 +0000
      Last backup: 2014-12-03 22:59:52 +0000
      Size of backup disk: Too small
      Backup size 2.00 TB < (Disk used 1.82 TB X 3)
      Steve WorkBU [Local]
      Total size: 4.00 TB
      Total number of backups: 84
      Oldest backup: 2013-04-16 21:25:53 +0000
      Last backup: 2014-12-04 00:13:41 +0000
      Size of backup disk: Too small
      Backup size 4.00 TB < (Disk used 1.82 TB X 3)
      TimeMachineBackup [Network]
      Total size: 2.89 TB
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 2.89 TB < (Disk used 1.82 TB X 3)
    Top Processes by CPU: ℹ️
          52% SMSDaemon
          18% WindowServer
          9% Finder
          3% Adobe InDesign CS6
          1% softwareupdated
    Top Processes by Memory: ℹ️
      1.29 GB Adobe Photoshop CS3
      704 MB SMSDaemon
      687 MB Adobe InDesign CS6
      653 MB Adobe InDesign CC 2014
      515 MB iTunes
    Virtual Memory Information: ℹ️
      2.53 GB Free RAM
      11.34 GB Active RAM
      1.73 GB Inactive RAM
      1.57 GB Wired RAM
      16.38 GB Page-ins
      0 B Page-outs

    Hi Linc,
    Here's the results & Thanks a million!
    Start time: 16:54:26 12/04/14
    Model Identifier: iMac11,3
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 7:27
    SATA
       Hitachi HDS722020ALA330                
    FireWire
       GoFlex Desk Mac (Seagate)
    USB
       USB Receiver (Logitech Inc.)
       My Passport 0748 (Western Digital Technologies, Inc.)
       USB-SATA Bridge (Prolific Technology, Inc.)
       G-DRIVE (HGST)
    Diagnostic reports
       2014-11-26 quicklookd32 crash x12
       2014-11-28 DistillerIntf crash
       2014-11-30 SMSDaemon crash x2
       2014-11-30 Safari hang
       2014-12-01 lmgrd crash
       2014-12-02 Adobe Photoshop CS3 hang x2
       2014-12-02 com.apple.WebKit.WebContent hang
       2014-12-03 QuarkXPress crash
       2014-12-03 quicklookd32 crash x2
       2014-12-04 Command WorkStation crash
       2014-12-04 quicklookd32 crash
    Log
       Dec  3 15:40:09 com.apple.xpc.launchd.domain.pid.MediaLibraryService.6904: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  3 16:48:08 com.apple.xpc.launchd.domain.pid.MediaLibraryService.7829: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  3 16:48:08 com.apple.xpc.launchd.domain.pid.MediaLibraryService.7829: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  3 17:23:54 com.apple.xpc.launchd.domain.pid.quicklookd.8387: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd. app
       Dec  3 18:02:20 process AdobeAcrobat[1457] thread 34079 caught burning CPU! It used more than 50% CPU (Actual recent usage: 63%) over 180 seconds. thread lifetime cpu usage 245.184274 seconds, (232.986653 user, 12.197621 system) ledger info: balance: 90005971524 credit: 243501221839 debit: 153495250315 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 141657143141
       Dec  3 18:19:13 ASP_TCP CancelOneRequest: cancelling slot 30 error 89 reqID 10793 flags 0x9 afpCmd 0x14 so 0xffffff804e3127b0
       Dec  4 09:28:43 ** GPU Hardware VM is disabled (multispace: disabled, page table updates with DMA: disabled)
       Dec  4 10:06:08 com.apple.xpc.launchd.domain.pid.BKAgentService.1362: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com. apple.BKAgentService.xpc
       Dec  4 10:06:08 com.apple.xpc.launchd.domain.pid.BKAgentService.1362: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/PrivateFrameworks/BookKit.framework/Versions/A/XPCServices/com. apple.BKAgentService.xpc
       Dec  4 10:06:16 com.apple.xpc.launchd.domain.pid.MediaLibraryService.1365: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 10:06:16 com.apple.xpc.launchd.domain.pid.MediaLibraryService.1365: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 10:36:48 process SMSDaemon[444] thread 3864 caught burning CPU!; EXC_RESOURCE supressed due to audio playback
       Dec  4 11:02:53 com.apple.xpc.launchd.domain.pid.MediaLibraryService.2206: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 11:02:53 com.apple.xpc.launchd.domain.pid.MediaLibraryService.2206: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 11:32:47 com.apple.xpc.launchd.domain.pid.MediaLibraryService.2627: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 11:32:47 com.apple.xpc.launchd.domain.pid.MediaLibraryService.2627: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 13:04:58 com.apple.xpc.launchd.domain.pid.MediaLibraryService.3921: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 13:04:58 com.apple.xpc.launchd.domain.pid.MediaLibraryService.3921: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 13:16:36 com.apple.xpc.launchd.domain.pid.iBooks.4071: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iBooks.app
       Dec  4 13:16:36 com.apple.xpc.launchd.domain.pid.iBooks.4071: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iBooks.app
       Dec  4 13:21:31 process Adobe Photoshop [3279] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       Dec  4 13:45:02 process CDFinder[2397] caught causing excessive wakeups. EXC_RESOURCE supressed due to audio playback
       Dec  4 14:23:03 firefox (map: 0xffffff8060fc9000) triggered DYLD shared region unnest for map: 0xffffff8060fc9000, region 0x7fff8d800000->0x7fff8da00000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
       Dec  4 16:27:39 com.apple.xpc.launchd.domain.pid.MediaLibraryService.6825: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
       Dec  4 16:27:39 com.apple.xpc.launchd.domain.pid.MediaLibraryService.6825: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/MediaLibrary.framework/Versions/A/XPCServices/com.ap ple.MediaLibraryService.xpc
    Activity
       CPU: user 4%, system 11%
       Net: 75 in, 33 out (KiB/s)
    CPU per process: SMSDaemon (UID 502) is using 98.1  %
    Memory: kernel_task (UID 0) is using 1369 MB
    kexts
       com.Logitech.Control Center.HID Driver (3.6.0)
       com.Logitech.Unifying.HID Driver (1.2.0)
       com.makemkv.kext.daspi (1)
       com.squirrels.driver.AirParrotSpeakers (1.8)
       com.squirrels.airparrot.framebuffer (3)
       com.Cycling74.driver.Soundflower (1.5.2)
       com.hzsystems.terminus.driver (4)
       com.logmein.hamachi (1.0)
    Daemons
       com.quark.quarkupdate
       com.noiseindustries.FxFactory.FxPlug
       com.adobe.versioncueCS3
       com.efi.FDCDaemon
       com.oracle.java.JavaUpdateHelper
       com.dymo.pnpd
       com.efi.ofasq
       com.apple.installer.osmessagetracing
       com.efi.lmgr
       com.oracle.java.Helper-Tool
       com.apple.aelwriter
       com.logmein.hamachi
       com.adobe.SwitchBoard
       com.efi.FieryMBSyncd
       com.adobe.fpsaud
       com.aladdin.aksusbd
       org.macosforge.xquartz.privileged_startx
       com.fitbit.galileod
    Agents
       com.efi.analytic.wxwidgets.plist
       com.adobe.AdobeCreativeCloud
       com.memeo.Memeod
       com.efi.FolderMapDockAgent
       org.macosforge.xquartz.startx
       com.quark.quarkupdate.agent
       com.micromat.SMSDaemon
       com.efi.FSMAgent
       com.adobe.CS5ServiceManager
       com.oracle.java.Java-Updater
       com.logmein.hamachimb
       com.Logitech.Control
       com.citrixonline.GoToMeeting.G2MUpdate
       com.adobe.ARM.UUID
       com.apple.Safari
       com.adobe.ARM.UUID
       com.google.keystone.user.agent
       com.adobe.ARM.UUID
       com.apple.AirPortBaseStationAgent
       com.seagate.SeagateStorageGauge.plist
    Startup items
       /Library/StartupItems/ES1000Service/ES1000NotifierServiceStart
       /Library/StartupItems/ES1000Service/ES1000NotifierServiceStop
       /Library/StartupItems/ES1000Service/ES1000Server
       /Library/StartupItems/ES1000Service/ES1000Service
       /Library/StartupItems/ES1000Service/Frameworks/bcs.dll
       /Library/StartupItems/ES1000Service/Frameworks/Speclib.dylib
       /Library/StartupItems/ES1000Service/StartupParameters.plist
       /Library/StartupItems/ProTec6/DemoOver
       /Library/StartupItems/ProTec6/Nalpeirond6
       /Library/StartupItems/ProTec6/ProTec6
       /Library/StartupItems/ProTec6/StartupParameters.plist
       /Library/StartupItems/ProTec6b/DemoOver
       /Library/StartupItems/ProTec6b/Nalpeirond6b
       /Library/StartupItems/ProTec6b/ProTec6b
       /Library/StartupItems/ProTec6b/StartupParameters.plist
    dylibs
       /usr/lib/libdvdcss.2.dylib
       /usr/lib/libgimpprint.7.dylib
       /usr/lib/libPrintServiceQuota.1.dylib
       /usr/lib/sqlite/libtclsqlite3.0.dylib
    Apps
       /Applications/Google Drive.app
    Contents of /etc/crontab (checksum 795173808)
       [N/A]
    Contents of /etc/hosts (checksum 3312852583)
       127.0.0.1 localhost Qwerty-6.local
       255.255.255.255 broadcasthost
       ::1             localhost
       fe80::1%lo0 localhost
    Contents of /etc/sysctl.conf (checksum 1212259411)
       kern.sysv.semume=20
    Contents of /etc/ssh_config (checksum 2841432291)
        Host *
          SendEnv LANG LC_*
       Host *
           XAuthLocation /opt/X11/bin/xauth
    Contents of /Library/LaunchAgents/com.efi.FSMAgent.plist (checksum 3349820171)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
       <key>Label</key>
       <string>com.efi.FSMAgent</string>
       <key>UserName</key>
       <string>xxxxxxxx</string>
       <key>ProgramArguments</key>
       <array>
       <string>/Applications/Fiery/Fiery Software Manager/Fiery Software Manager.app/Contents/MacOS/Fiery Software Manager</string>
       <string>-startup</string>
       </array>
       <key>AbandonProcessGroup</key>
       <true />
       <key>RunAtLoad</key>
       <true />
       <key>KeepAlive</key>
       <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.efi.FolderMapDockAgent.plist (checksum 3581411374)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.efi.FolderMapDockAgent</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Applications/Fiery/Fiery Remote Scan/FolderMapDock.app/Contents/MacOS/FolderMapDock</string>
          </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Disabled</key>
        <false/>
        <key>KeepAlive</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.efi.analytic.wxwidgets.plist (checksum 2580991028)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.efi.analytic.wxwidgets.plist</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/efiLINQ/efiLINQ</string>
        <string>-n=wxWidgets</string>
        </array>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>11</integer>
        <key>Minute</key>
        <integer>30</integer>
        </dict>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.logmein.hamachimb.plist (checksum 2358241344)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>OnDemand</key>
        <false/>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.logmein.hamachimb</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Applications/LogMeIn Hamachi/LogMeIn Hamachi Menubar.app/Contents/MacOS/LogMeIn Hamachi Menubar</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist (checksum 767641393)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>17</integer>
        <key>Minute</key>
        <integer>30</integer>
        <key>Weekday</key>
        <integer>5</integer>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.quark.quarkupdate.agent.plist (checksum 2170463177)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.quark.quarkupdate.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PreferencePanes/QUPreferencePane.prefPane/Contents/MacOS/Prefe renceHelper</string>
        <string>--silent</string>
        </array>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>2</integer>
        <key>Minute</key>
        <integer>0</integer>
        <key>Weekday</key>
        <integer>6</integer>
        </dict>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.seagate.SeagateStorageGauge.plist (checksum 3262128215)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <!--
          com.seagate.SeagateStorageGauge.plist
          SeagateDiagnostics
          Created by John Brisbin on 3/10/10.
          Copyright 2010 Seagate Technologies LLC.. All rights reserved.
       -->
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.seagate.SeagateStorageGauge.plist</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Seagate/Seagate Storage Gauge.app/Contents/MacOS/Seagate Storage Gauge</string>
        <string>-doautolnch</string>
        <string>/Library/Application Support/Seagate/Seagate Storage Gauge.app</string>
        </array>
        <key>RunAtLoad</key>
       ...and 3 more line(s)
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer.plist (checksum 2508628911)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.teamviewer.teamviewer</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 6/TeamViewer.app/Contents/MacOS/TeamViewer</string>
        <string>--agent</string>
        </array>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 6/TeamViewer.app/Contents/MacOS/</string>
        <key>RunAtLoad</key>
        <true/>
        <key>Debug</key>
        <true/>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer_desktop.plist (checksum 77859846)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.teamviewer.desktop</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>LoginWindow</string>
        <string>Aqua</string>
        </array>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 6/TeamViewer.app/Contents/Resources/TeamViewer_Desktop</string>
        <string>--agent</string>
        </array>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 6/TeamViewer.app/Contents/Resources/</string>
        <key>Debug</key>
        <true/>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
       ...and 3 more line(s)
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist (checksum 2451978492)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
       ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.adobe.versioncueCS3.plist (checksum 714202969)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>GroupName</key>
        <string>wheel</string>
        <key>Label</key>
        <string>com.adobe.versioncueCS3</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Adobe/Adobe Version Cue CS3/Server/bin/VersionCueCS3d</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ServiceDescription</key>
        <string>Adobe Version Cue CS3</string>
        <key>UserName</key>
        <string>root</string>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.aladdin.aksusbd.plist (checksum 2687272378)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.aladdin.aksusbd</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/libexec/aksusbd</string>
        <string>-f</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.apple.qmaster.qmasterd.plist (checksum 904438932)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.qmaster.qmasterd</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/sbin/qmasterd</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.efi.FDCDaemon.plist (checksum 2997647309)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.efi.FDCDaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Fiery/Command WorkStation 5/FDC.app/Contents/MacOS/FDC</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Disabled</key>
        <false/>
        <key>KeepAlive</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.efi.FRSMailboxSyncServiceDaemon.plist (checksum 1311335404)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.efi.FieryMBSyncd</string>
        <key>Program</key>
        <string>/Applications/Fiery/Fiery Remote Scan/FieryMBSyncd</string>
        <key>ProgramArguments</key>
        <array/>
        <key>RunAtLoad</key>
        <true/>
        <key>Disabled</key>
        <false/>
        <key>KeepAlive</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.efi.lmgr.plist (checksum 937866716)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
           <key>Label</key>
           <string>com.efi.lmgr</string>
        <key>EnvironmentVariables</key>
        <dict>
        <key>PATH</key>
        <string>/Applications/EFI/EFILM:/Applications/EFI/EFILM/FlexeraService</string>
        <key>LD_LIBRARY_PATH</key>
        <string>/Applications/EFI/EFILM:/Applications/EFI/EFILM/FlexeraService</string>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/EFI/EFILM/lmgrd_wrapper.sh</string>
        <string>/Applications/EFI/EFILM</string>
        </array>
        <key>KeepAlive</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.efi.ofasq.plist (checksum 575404541)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
           <key>Label</key>
           <string>com.efi.ofasq</string>
        <key>EnvironmentVariables</key>
        <dict>
        <key>PATH</key>
        <string>/Applications/Fiery/OFASQ:/Applications/Fiery/OFASQ/FlexeraService</str ing>
        <key>LD_LIBRARY_PATH</key>
        <string>/Applications/Fiery/OFASQ:/Applications/Fiery/OFASQ/FlexeraService</str ing>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Fiery/OFASQ/ofaApp</string>
        </array>
        <key>KeepAlive</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.fitbit.galileod.plist (checksum 333804614)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Program</key>
        <string>/usr/local/bin/galileod</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/local/bin/galileod</string>
        </array>
        <key>Label</key>
        <string>com.fitbit.galileod</string>
        <key>UserName</key>
        <string>root</string>
        <key>GroupName</key>
        <string>daemon</string>
        <key>InitGroups</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>UserClients</key>
       ...and 27 more line(s)
    Contents of /Library/LaunchDaemons/com.logmein.hamachi.plist (checksum 4265225024)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.logmein.hamachi</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn Hamachi/bin/hamachid</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/LogMeIn Hamachi/stderr.log</string>
        <key>StandardOutPath</key>
        <string>/Library/Logs/LogMeIn Hamachi/stdout.log</string>
        <key>WorkingDirectory</key>
        <string>/Library/Application Support/LogMeIn Hamachi/</string>
        <key>Debug</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.noiseindustries.FxFactory.FxPlug.plist (checksum 3251494786)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.noiseindustries.FxFactory.FxPlug</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.noiseindustries.FxFactory.FxPlug</st ring>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.quark.quarkupdate.plist (checksum 920573843)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.quark.quarkupdate</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.quark.quarkupdate</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist (checksum 50854030)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.teamviewer.service</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 6/TeamViewer.app/Contents/Resources/TeamViewer_Service</string>
        </array>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 6/TeamViewer.app/Contents/Resources/</string>
        <key>RunAtLoad</key>
        <true/>
        <key>Debug</key>
        <true/>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 1251035989)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat 9 Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 4116814193)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 926752576)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.enabled.plist (checksum 1470986548)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.apple.FolderActions.enabled</string>
        <key>OnDemand</key>
        <false/>
        <key>Program</key>
        <string>/System/Library/CoreServices/Folder Actions Dispatcher.app/Contents/MacOS/Folder Actions Dispatcher</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist (checksum 479411406)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist (checksum 2714581528)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
       </dict>
       ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 347888973)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.memeo.Memeod.plist (checksum 3934797224)
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.memeo.Memeod</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Memeo Backup/Memeo Backup.app/Contents/Daemons/Memeod</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string

  • Firefox mouse cursor using default X11 icons

    Hi
    I'm a brand new Arch user and I'm extremely happy with it.  I've got this one remaining nagging issue that I can't seem to find a solution for. 
    I'm using XFCE 4.4 and have my mouse cursor theme set to pArch-24 but when I move the mouse over a firefox window it reverts back to the small black default X11 icons.  I have the gtk-qt-engine installed and any gnome or kde apps I launch use the right mouse theme so it seems to be only firefox (and gdm) where this is happening. 
    It's a small issue but I spend 90% of my time in firefox. 
    Any suggestions would be appreciated. 
    thanks

    I once had a similar problem under SuSE 10 (but with KDE), and the following solved this:
    - Copy your theme directory to /usr/share/icons/  and then choose  it in the XFCE-Menu (probably you already did this)
    - Now create the folder  .icons  under /home/username/  and copy your theme directory there as well, and also copy the default folder from /usr/share/icons/ there
    - In this default folder you now have to edit the file index.theme and replace (or create) there a line that says Inherits=core with Inherits=name_of_your_icon_directory (spell it the same way, with capital and small letters)
    Save this, log off, log on, maybe this solves the problem with firefox. For me it did back then.
    EDIT: I just realised that there is no longer a default-folder under /usr/share/icons/
    Hm, forget what I wrote, or try to create it by yourself (copy your icon directory to the name default and then edit the file). Don't know if it will work...

  • Spotlight constantly thrashing on mail folders

    I'm using Entourage 2008 (and now Outlook 2011) to store thousands of emails. I was having a problem where my Time Machine was super-slow because it was always "waiting for index". I finally was able to track it down (using fs_usage | grep getattrlist, suggested by a kind Apple Discussions member) to the fact that my Spotlight was extremely busy constantly updating the Microsoft User Identity folder. After adding it to the privacy list, the TM was working great. However, with that folder excluded from Spotlight, I can't search for email! Anyone have any ideas - how is this to be avoided? How do people with large email databases (Exchange server access) use TM and Spotlight together? Any way to keep Spotlight's mds process (or whatever else it needs) more responsive to TM and spend less time constantly re-indexing the email folders?
    Mike

    No matter what mail program I use, disk thrashing occurs when I start the client.  I now use mac mail which reads my exchange email account.  The account does have a lot of emails in there, perhaps I might try deleting a few.

  • Extremely long(10 minute)  Full GC times

    I have a problem that seems unrelated to traditional GC tuning. Full Garbage Collection on my server (x86, Linux, 2 proc, 2GB memory, 1GB Heap) is taking in excess of 10 minutes. The frequency of the Full GC is about every 8-10 hours. I've combed some posts for issues related to long GC, but long is a relative term, and usually refers to 2-10 second range.
    My question is, what kinds of things could cause such an extremely long GC. My theory is that this particular machine is hosting some other applications, most notably a mysql server that is connected to remotely. With this setup, another application could be using resources on this primary server while the Full GC is executing, thus causing a thrashing scenario from a CPU perspective. But even so, it seems that this wouldn't cause Full GC to take 2 orders of magnitude longer.
    I've currently changed to the CMS garbage collector, so the long pauses are not a problem, but I'd really like to understand why such a long Full GC pause is even possible, and what can be done about it using the serial Collector

    Possibly the objects that are being garbage collected, are having their finalize() method called. It's not normally guaranteed that the GC will call an objects finalize() method....but you never know.
    In that case, the finalize() method(s) maybe be timing out, eg. trying to close database or network connections, and taking 60 seconds or more to time out individually.
    It's just a wild guess...
    regards,
    Owen

  • Threads thrashing on synchronized queue

    Hi,
    I have been performing some tests on threads the past few days. I have a serious bottleneck in my application related specifically to thread synchronization.
    To test out the problematic thread issue, i created two Worker threads. So there are a total of 3 threads running including the Main thread (excluding GC etc).
    My test application extracts a Blob from a database and stores these in a simple synchronized queue. To test things, I pre cache 1000 Blobs (adding them into the Inbox queue) before runing my Worker threads.
    Once cached, I start the two Worker threads and let them consume and process the messages (Blobs).
    Worker Thread A collects a new message from the Inbox queue, processes it, and places it into and Outbox queue.
    Thread A continually retrieves messages from the Inbox using a synchronized remove() method.
    Thread B waits to receive messages into the Outbox queue. When a new message is received, it processes the message and subsequently retrieves another message in the queue.
    Both queues work on a FIFO policy.
    This test application models a simplified world of the real application which takes messages sent over TCP/IP, places them in an Inbox queue, and operations are performed on the message before being placed into an Outbox queue ready to be sent to another client.
    The problem is that there is serious overhead even with just these two threads. When the time taken to process a message is in general < 1ms, incurring 50+ms of overhead is exhorbitant.
    Below I have listed some example timings.
    I haven't changed the Thread priorities in this test run (they are set to NORM_PRIORITY). Even when setting Thread B to MAX_PRIORITY to consume blobs faster, the performance is still poor - I can see latencies between 1ms and 30ms.
    I'm running on a Win XP machine within Eclipse for the testing - even this shouldn't explain the overhead if the time to process the message is still fast. Does anyone have any suggestions on how to overcome this problem? Thread Pools and Executors don't seem necessary if there is issues when running only 2 threads. I've included the stripped down code (less any timing reports) below the output.
    Thanks,
    Mark
    Total Time = Time Thread B finished processing - Time Thread A collected the message
    Queue Count = You can see that the queue progressively banks up. Yet even with 0 or 1 messages in the queue, the overhead seems excessive
    Item ID, Total Time, Time to collect from Inbox (get), Process A, Time to collect from Outbox (get), Process B, Queue Count
    1,47.8712,0.0039,0.2863,0.0053,0.3554,1
    2,4.5017,0.0053,1.8497,0.0056,0.7414,0
    3,4.6693,0.0045,3.1887,0.1715,1.3370,1
    4,11.5911,0.0045,1.6505,0.0047,9.6889,1
    5,10.6402,0.0045,7.3199,0.0059,0.2858,0
    6,11.8498,0.0053,11.1467,2.8805,0.6358,1
    7,2.5716,0.0050,1.8611,0.0050,0.5001,0
    8,2.5654,0.0045,1.9852,0.0075,0.5017,0
    9,3.7952,0.0050,3.0685,1.7203,0.6406,0
    10,8.1049,0.0045,4.7456,6.5005,0.5355,2
    11,11.5110,0.0045,1.3591,0.0140,6.8553,3
    12,11.1632,0.0047,2.1078,0.0064,0.5962,2
    13,9.7638,0.0039,1.0621,0.0045,0.4216,1
    14,9.6554,0.0050,5.2445,0.0045,0.6780,0
    15,17.3190,0.0045,5.4418,3.8217,3.7982,7
    16,16.1839,0.0045,1.1300,0.0067,3.7661,13
    183,264.3495,0.0036,0.2646,0.0047,0.1523,177
    184,264.6873,0.0039,0.3162,0.0045,0.4665,176
    185,264.6387,0.0039,0.2640,0.0047,0.1486,175
    186,265.2667,0.0045,0.3445,0.0061,0.2207,174
    187,265.3038,0.0039,0.3665,0.0045,0.2579,173
    188,265.2239,0.0047,4.5092,0.0045,0.1687,172
    189,261.1888,0.0042,0.3970,0.0045,0.3400,171
    190,261.3304,0.0042,0.3780,0.0045,0.4031,170
    191,261.2142,0.0042,0.2671,0.0045,0.1467,169
    192,261.4762,0.0045,0.3224,0.0045,0.3777,168
    193,261.6176,0.0039,0.3087,0.0047,0.3271,167
    194,261.8464,0.0039,0.3084,0.0045,0.4026,166
    195,261.9841,0.0042,0.3707,0.0045,0.2296,165
    196,261.9858,0.0042,0.3774,0.0047,0.2514,164
    197,352.5018,0.0039,0.3595,0.0061,0.3724,320
    198,353.0776,0.0042,0.3224,0.0047,0.3724,324
    199,353.0513,0.0045,7.2205,0.0047,0.1640,323
    200,346.6273,0.0045,0.3447,0.0047,0.6152,322
    public class Collector implements Runnable{//extends Thread {
       MessageQueue inbox;
       MessageQueue outbox;
       public Collector(MessageQueue inbox, MessageQueue outbox) {
          this.inbox = inbox;
          this.outbox = outbox;
       public void collect() {
          MessageContainer mc;
          MessageInterface tx_msg;
          // start timing now
          mc = inbox.get(); // waits until a msg arrives
          // end timing how long it took to collect the msg
          if (outbox == null) {
             tx_msg = new TranslatedMessage(mc.the_message);
             mc.the_message.close();
             tx_msg.close();
             // stop timing here (Process B timing stopped)
             // output the timing report here
             mc = null;
          } else {
             // translate to XML - start timing Process arrives
             tx_msg = new XMLMessage(mc.the_message);
             mc.the_message.close();
             mc.the_message = tx_msg;
             // end time to process A
             outbox.put(mc);
             mc = null;
       public void run() {
          try {
             while (isRunning()) {
                collect();
          } catch (Exception e) {
             Debugger.println(e);
    public class MessageQueue {
       private LinkedList<MessageContainer> queue;
       private int put = 0;
       private int recd = 0;
       private int tally = 0;
       private Object tallyLock = new Object();
       /** Creates a new instance of MessageQueue */
       public MessageQueue() {
          queue = new LinkedList<MessageContainer>();
        * Places the given message in the queue to await consumption
        * @param message The message to store in the queue
        * @param id The message identifier
        * @param bytes The size in bytes
       public void put(MessageInterface message, String id, int bytes) {
          put( new MessageContainer(message, id, bytes) );
       public void put(MessageContainer message) {
          if (message != null) {
             synchronized(queue) {
                queue.add( message );
                put++;
                synchronized(tallyLock) {
                   tally++;
                   tallyLock.notify();
                queue.notify();
        * Conditional to test whether the queue has any messages
        * @return True if the queue is empty, false otherwise
       public synchronized boolean isEmpty() {
          return queue.isEmpty();
        * Get the message at the top of the queue's stack.
        * If there are no messages in the queue,
        * then sit and wait until one becomes available.
        * Handles things using a first in, first out policy.
        * @return The interface message at the front of the queue
       public MessageContainer get() {
          MessageContainer message = null;
          synchronized(queue) {
             while( queue.isEmpty() ) {
                try {
                   queue.wait();
                } catch( InterruptedException ie ) {
             message = ( MessageContainer )queue.removeFirst();
             recd++;
             queue.notify();
          synchronized(tallyLock) {
             tally--;
             tallyLock.notify();
          return message;
       public int getTally() {
          synchronized(tallyLock) {
             return tally;
       public void waitTillEmpty() {
          synchronized(queue) {
             while( !queue.isEmpty() ) {
                try {
                   queue.wait();
                } catch( InterruptedException ie ) {
    }

    Hi TBemis,
    I implemented Collections.synchronizedList() but without luck. I think the problem is due to thread scheduling? One thread seems to be starved of CPU (namely the second thread which consumes the message and outputs the timing report) while the other - the producer - seems to tie things up and hogging CPU to put more messages in it's Outbox. CPU usage is not extreme when I run the application (1-5%) but what the test does require, Thread #1 seems to hog CPU cycles.
    I should have mentioned in the initial post that BLOBs are never larger than 36Kb so not too large. So I wouldn't expect the GC to be the culprit? The times (a couple of hundred milliseconds) seems very exorbitant for GC.
    Also should have mentioned, the test I performed creates two threads (classic producer-consumer scenario). One is initialised with an Inbox (housing the messages from the database) and an Outbox to pass translated messages into. The other simply has an inbox (a handle to the the producer's outbox).
    I conducted some more tests yesterday. I introduced a sleep of 1 millisecond and you can see that the thrashing is reduced dramatically. Now the time taken overall is regularly under 1 ms long. I introduced the sleep after the call to add a new message into the Outbox of Thread A:
    try { Thread.currentThread().sleep(1); } catch (InterruptedException ie) {}
    New times:
    Total Time = Time Thread B finished processing - Time Thread A collected the blob
    Item ID, Total Time, Time to collect from Inbox (get), Process A, Time to collect from Outbox (get), Process B, Queue Count
    1,0.4014,0.0064,0.2053,0.9579,0.1592,0
    2,0.9255,0.0335,0.3989,1.9123,0.4431,0
    3,0.8171,0.0092,0.3914,1.3169,0.3688,0
    4,0.5135,0.0101,0.3291,1.4175,0.1442,0
    5,0.5395,0.0081,0.3185,1.7139,0.1841,0
    6,0.7680,0.0084,0.3875,1.7583,0.3243,0
    7,0.6428,0.0204,0.3836,1.5611,0.2104,0
    8,1.3186,0.0416,0.4590,1.7307,0.7685,0
    9,0.5118,0.0584,0.2897,0.9146,0.1349,0
    10,0.7859,0.0092,0.3903,1.7851,0.3378,0
    11,0.4693,0.0087,0.3031,1.4225,0.1293,0
    12,0.9124,0.0081,0.3805,1.8863,0.4095,0
    13,0.4911,0.0084,0.3193,1.3071,0.1341,0
    14,2.0899,0.0098,0.6727,2.0885,0.3531,1
    15,0.4425,0.0056,0.1673,0.0036,0.2056,0
    Is there any way to overcome this poor thread scheduling without resorting to changing thread priorities or introducing artificial delays?

  • What is the extreme minimum

    I've been using linux for a few years now, but I'm still not well versed in it to answer this question for myself without breaking stuff. I wanted to know what the extreme minimum packages I need for a working linux install. I plan on using that as my base and then adding X11. I don't know what linux actually needs to run properly without screwing up and what packages might be considered needed, but really are not crucial.

    brandon88tube wrote:I haven't done an Arch install in a while, but if I recall, I tried installing only a handful of packages and it seems that arch installed more and was wondering if they were really needed.
    Welcome to the world of dependency management.
    If you wonder whether they're really needed, only one way to find out: remove them. See what breaks.

  • X11 cut & paste?

    There are other threads discussing many X11 issues. It is quite irritating that Apple broke this.
    Anyway, has anyone else had issues with cut&paste not working in X11 in the few windows that you CAN make work properly? I can't get it to work properly and it's driving me crazy.

    Yeah, it seems that 3 button mouse emulation preference is ignored by X11.app. So option-clicking doesn't work for X11 "paste", that said I haven't tried it with a real 3 button mouse yet, does that not work either?
    I've also noted that the command-option-A fullscreen X11 doesn't work either.
    Apple shipped a broken X11.app with Leopard, and unfortunately this means I can't deploy Leopard at work yet. Shame because the rest of Leopard is extremely positive.

  • [SOLVED] X11/KDE: 640x480 is the only one listed

    So I've got X11 and KDE up and running, but the only screen res size is 640x480, which is way too cramped.
    In order of events here is what I've done:
    Initally, I generated an X11 conf using Xorg -configure. I was able to start KDE without any troubles, other than the hideous 640x480 resolution. I found the settings to change it in KDE, but only 640x480 is listed.
    I joined #archlinux/freenode and was told to use hwd -xa (http://wiki.archlinux.org/index.php/Xor … uring_xorg), but that didn't work either. The only option is still 640x480.
    Any ideas on how to fix this?
    Last edited by Phase (2007-10-14 18:44:18)

    Sure:
    Section "ServerLayout"
        Identifier     "Xorg Configured"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
    # PS/2 Mouse not detected
    # Serial Mouse not detected
            InputDevice    "USB Mouse" "CorePointer"
    EndSection
    Section "ServerFlags"
        Option "AllowMouseOpenFail"  "true"
    EndSection
    Section "Files"
        RgbPath      "/usr/share/X11/rgb"
        ModulePath   "/usr/lib/xorg/modules"
        FontPath     "/usr/share/fonts/misc:unscaled"
        FontPath     "/usr/share/fonts/misc"
        FontPath     "/usr/share/fonts/75dpi:unscaled"
        FontPath     "/usr/share/fonts/75dpi"
        FontPath     "/usr/share/fonts/100dpi:unscaled"
        FontPath     "/usr/share/fonts/100dpi"
        FontPath     "/usr/share/fonts/PEX"
    # Additional fonts: Locale, Gimp, TTF...
        FontPath     "/usr/share/fonts/cyrillic"
    #    FontPath     "/usr/share/lib/X11/fonts/latin2/75dpi"
    #    FontPath     "/usr/share/lib/X11/fonts/latin2/100dpi"
    # True type and type1 fonts are also handled via xftlib, see /etc/X11/XftConfig!
        FontPath     "/usr/share/fonts/Type1"
        FontPath     "/usr/share/fonts/ttf/western"
        FontPath     "/usr/share/fonts/ttf/decoratives"
        FontPath     "/usr/share/fonts/truetype"
        FontPath     "/usr/share/fonts/truetype/openoffice"
        FontPath     "/usr/share/fonts/truetype/ttf-bitstream-vera"
        FontPath     "/usr/share/fonts/latex-ttf-fonts"
        FontPath     "/usr/share/fonts/defoma/CID"
        FontPath     "/usr/share/fonts/defoma/TrueType"
    EndSection
    Section "Module"
            Load  "ddc"  # ddc probing of monitor
        Load  "dbe"
        Load  "dri"
        Load  "extmod"
        Load  "glx"
            Load  "bitmap" # bitmap-fonts
        Load  "type1"
        Load  "freetype"
        Load  "record"
    EndSection
    Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "keyboard"
            Option      "CoreKeyboard"
        Option "XkbRules" "xorg"
        Option "XkbModel" "pc105"
        Option "XkbLayout" ""
        Option "XkbVariant" ""
    EndSection
    Section "InputDevice"
        Identifier  "Serial Mouse"
        Driver      "mouse"
        Option      "Protocol" "Microsoft"
        Option      "Device" "/dev/ttyS0"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option        "SendCoreEvents"  "true"
    EndSection
    Section "InputDevice"
        Identifier  "PS/2 Mouse"
        Driver      "mouse"
        Option      "Protocol" "auto"
        Option          "ZAxisMapping"          "4 5"
        Option      "Device" "/dev/psaux"
        Option      "Emulate3Buttons" "true"
        Option      "Emulate3Timeout" "70"
        Option        "SendCoreEvents"  "true"
    EndSection
    Section "InputDevice"
            Identifier      "USB Mouse"
            Driver          "mouse"
            Option          "Device"                "/dev/input/mice"
        Option        "SendCoreEvents"    "true"
            Option          "Protocol"              "IMPS/2"
            Option          "ZAxisMapping"          "4 5"
            Option          "Buttons"               "5"
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Monitor"
        Identifier "Monitor0"
            Option "DPMS" "true"
    #    HorizSync    28.0 - 78.0 # Warning: This may fry very old Monitors
        HorizSync    28.0 - 96.0 # Warning: This may fry old Monitors
        VertRefresh  50.0 - 75.0 # Very conservative. May flicker.
    #    VertRefresh  50.0 - 62.0 # Extreme conservative. Will flicker. TFT default.
        #  Default modes distilled from
        #      "VESA and Industry Standards and Guide for Computer Display Monitor
        #       Timing", version 1.0, revision 0.8, adopted September 17, 1998.
        #  $XFree86: xc/programs/Xserver/hw/xfree86/etc/vesamodes,v 1.4 1999/11/18 16:52:17 tsi Exp $
        # 640x350 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "640x350"    31.5  640  672  736  832    350  382  385  445 +hsync -vsync
        # 640x400 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "640x400"    31.5  640  672  736  832    400  401  404  445 -hsync +vsync
        # 720x400 @ 85Hz (VESA) hsync: 37.9kHz
        ModeLine "720x400"    35.5  720  756  828  936    400  401  404  446 -hsync +vsync
        # 640x480 @ 60Hz (Industry standard) hsync: 31.5kHz
        ModeLine "640x480"    25.2  640  656  752  800    480  490  492  525 -hsync -vsync
        # 640x480 @ 72Hz (VESA) hsync: 37.9kHz
        ModeLine "640x480"    31.5  640  664  704  832    480  489  491  520 -hsync -vsync
        # 640x480 @ 75Hz (VESA) hsync: 37.5kHz
        ModeLine "640x480"    31.5  640  656  720  840    480  481  484  500 -hsync -vsync
        # 640x480 @ 85Hz (VESA) hsync: 43.3kHz
        ModeLine "640x480"    36.0  640  696  752  832    480  481  484  509 -hsync -vsync
        # 800x600 @ 56Hz (VESA) hsync: 35.2kHz
        ModeLine "800x600"    36.0  800  824  896 1024    600  601  603  625 +hsync +vsync
        # 800x600 @ 60Hz (VESA) hsync: 37.9kHz
        ModeLine "800x600"    40.0  800  840  968 1056    600  601  605  628 +hsync +vsync
        # 800x600 @ 72Hz (VESA) hsync: 48.1kHz
        ModeLine "800x600"    50.0  800  856  976 1040    600  637  643  666 +hsync +vsync
        # 800x600 @ 75Hz (VESA) hsync: 46.9kHz
        ModeLine "800x600"    49.5  800  816  896 1056    600  601  604  625 +hsync +vsync
        # 800x600 @ 85Hz (VESA) hsync: 53.7kHz
        ModeLine "800x600"    56.3  800  832  896 1048    600  601  604  631 +hsync +vsync
        # 1024x768i @ 43Hz (industry standard) hsync: 35.5kHz
        ModeLine "1024x768"   44.9 1024 1032 1208 1264    768  768  776  817 +hsync +vsync Interlace
        # 1024x768 @ 60Hz (VESA) hsync: 48.4kHz
        ModeLine "1024x768"   65.0 1024 1048 1184 1344    768  771  777  806 -hsync -vsync
        # 1024x768 @ 70Hz (VESA) hsync: 56.5kHz
        ModeLine "1024x768"   75.0 1024 1048 1184 1328    768  771  777  806 -hsync -vsync
        # 1024x768 @ 75Hz (VESA) hsync: 60.0kHz
        ModeLine "1024x768"   78.8 1024 1040 1136 1312    768  769  772  800 +hsync +vsync
        # 1024x768 @ 85Hz (VESA) hsync: 68.7kHz
        ModeLine "1024x768"   94.5 1024 1072 1168 1376    768  769  772  808 +hsync +vsync
        # 1152x864 @ 75Hz (VESA) hsync: 67.5kHz
        ModeLine "1152x864"  108.0 1152 1216 1344 1600    864  865  868  900 +hsync +vsync
        # 1280x960 @ 60Hz (VESA) hsync: 60.0kHz
        ModeLine "1280x960"  108.0 1280 1376 1488 1800    960  961  964 1000 +hsync +vsync
        # 1280x960 @ 85Hz (VESA) hsync: 85.9kHz
        ModeLine "1280x960"  148.5 1280 1344 1504 1728    960  961  964 1011 +hsync +vsync
        # 1280x1024 @ 60Hz (VESA) hsync: 64.0kHz
        ModeLine "1280x1024" 108.0 1280 1328 1440 1688   1024 1025 1028 1066 +hsync +vsync
        # 1280x1024 @ 75Hz (VESA) hsync: 80.0kHz
        ModeLine "1280x1024" 135.0 1280 1296 1440 1688   1024 1025 1028 1066 +hsync +vsync
        # 1280x1024 @ 85Hz (VESA) hsync: 91.1kHz
        ModeLine "1280x1024" 157.5 1280 1344 1504 1728   1024 1025 1028 1072 +hsync +vsync
        # 1600x1200 @ 60Hz (VESA) hsync: 75.0kHz
        ModeLine "1600x1200" 162.0 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 65Hz (VESA) hsync: 81.3kHz
        ModeLine "1600x1200" 175.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 70Hz (VESA) hsync: 87.5kHz
        ModeLine "1600x1200" 189.0 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 75Hz (VESA) hsync: 93.8kHz
        ModeLine "1600x1200" 202.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1600x1200 @ 85Hz (VESA) hsync: 106.3kHz
        ModeLine "1600x1200" 229.5 1600 1664 1856 2160   1200 1201 1204 1250 +hsync +vsync
        # 1792x1344 @ 60Hz (VESA) hsync: 83.6kHz
        ModeLine "1792x1344" 204.8 1792 1920 2120 2448   1344 1345 1348 1394 -hsync +vsync
        # 1792x1344 @ 75Hz (VESA) hsync: 106.3kHz
        ModeLine "1792x1344" 261.0 1792 1888 2104 2456   1344 1345 1348 1417 -hsync +vsync
        # 1856x1392 @ 60Hz (VESA) hsync: 86.3kHz
        ModeLine "1856x1392" 218.3 1856 1952 2176 2528   1392 1393 1396 1439 -hsync +vsync
        # 1856x1392 @ 75Hz (VESA) hsync: 112.5kHz
        ModeLine "1856x1392" 288.0 1856 1984 2208 2560   1392 1393 1396 1500 -hsync +vsync
        # 1920x1440 @ 60Hz (VESA) hsync: 90.0kHz
        ModeLine "1920x1440" 234.0 1920 2048 2256 2600   1440 1441 1444 1500 -hsync +vsync
        # 1920x1440 @ 75Hz (VESA) hsync: 112.5kHz
        ModeLine "1920x1440" 297.0 1920 2064 2288 2640   1440 1441 1444 1500 -hsync +vsync
        # Additional modelines
        ModeLine "1800x1440"  230    1800 1896 2088 2392  1440 1441 1444 1490 +HSync +VSync
        ModeLine "1800x1440"  250    1800 1896 2088 2392  1440 1441 1444 1490 +HSync +VSync
        # Extended modelines with GTF timings
        # 640x480 @ 100.00 Hz (GTF) hsync: 50.90 kHz; pclk: 43.16 MHz
        ModeLine "640x480"  43.16  640 680 744 848  480 481 484 509  -HSync +Vsync
        # 768x576 @ 60.00 Hz (GTF) hsync: 35.82 kHz; pclk: 34.96 MHz
        ModeLine "768x576"  34.96  768 792 872 976  576 577 580 597  -HSync +Vsync
        # 768x576 @ 72.00 Hz (GTF) hsync: 43.27 kHz; pclk: 42.93 MHz
        ModeLine "768x576"  42.93  768 800 880 992  576 577 580 601  -HSync +Vsync
        # 768x576 @ 75.00 Hz (GTF) hsync: 45.15 kHz; pclk: 45.51 MHz
        ModeLine "768x576"  45.51  768 808 888 1008  576 577 580 602  -HSync +Vsync
        # 768x576 @ 85.00 Hz (GTF) hsync: 51.42 kHz; pclk: 51.84 MHz
        ModeLine "768x576"  51.84  768 808 888 1008  576 577 580 605  -HSync +Vsync
        # 768x576 @ 100.00 Hz (GTF) hsync: 61.10 kHz; pclk: 62.57 MHz
        ModeLine "768x576"  62.57  768 816 896 1024  576 577 580 611  -HSync +Vsync
        # 800x600 @ 100.00 Hz (GTF) hsync: 63.60 kHz; pclk: 68.18 MHz
        ModeLine "800x600"  68.18  800 848 936 1072  600 601 604 636  -HSync +Vsync
        # 1024x768 @ 100.00 Hz (GTF) hsync: 81.40 kHz; pclk: 113.31 MHz
        ModeLine "1024x768"  113.31  1024 1096 1208 1392  768 769 772 814  -HSync +Vsync
        # 1152x864 @ 60.00 Hz (GTF) hsync: 53.70 kHz; pclk: 81.62 MHz
        ModeLine "1152x864"  81.62  1152 1216 1336 1520  864 865 868 895  -HSync +Vsync
        # 1152x864 @ 85.00 Hz (GTF) hsync: 77.10 kHz; pclk: 119.65 MHz
        ModeLine "1152x864"  119.65  1152 1224 1352 1552  864 865 868 907  -HSync +Vsync
        # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz
        ModeLine "1152x864"  143.47  1152 1232 1360 1568  864 865 868 915  -HSync +Vsync
        # 1280x960 @ 72.00 Hz (GTF) hsync: 72.07 kHz; pclk: 124.54 MHz
        ModeLine "1280x960"  124.54  1280 1368 1504 1728  960 961 964 1001  -HSync +Vsync
        # 1280x960 @ 75.00 Hz (GTF) hsync: 75.15 kHz; pclk: 129.86 MHz
        ModeLine "1280x960"  129.86  1280 1368 1504 1728  960 961 964 1002  -HSync +Vsync
        # 1280x960 @ 100.00 Hz (GTF) hsync: 101.70 kHz; pclk: 178.99 MHz
        ModeLine "1280x960"  178.99  1280 1376 1520 1760  960 961 964 1017  -HSync +Vsync
        # 1280x1024 @ 100.00 Hz (GTF) hsync: 108.50 kHz; pclk: 190.96 MHz
        ModeLine "1280x1024"  190.96  1280 1376 1520 1760  1024 1025 1028 1085  -HSync +Vsync
        # 1400x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 122.61 MHz
        ModeLine "1400x1050"  122.61  1400 1488 1640 1880  1050 1051 1054 1087  -HSync +Vsync
        # 1400x1050 @ 72.00 Hz (GTF) hsync: 78.77 kHz; pclk: 149.34 MHz
        ModeLine "1400x1050"  149.34  1400 1496 1648 1896  1050 1051 1054 1094  -HSync +Vsync
        # 1400x1050 @ 75.00 Hz (GTF) hsync: 82.20 kHz; pclk: 155.85 MHz
        ModeLine "1400x1050"  155.85  1400 1496 1648 1896  1050 1051 1054 1096  -HSync +Vsync
        # 1400x1050 @ 85.00 Hz (GTF) hsync: 93.76 kHz; pclk: 179.26 MHz
        ModeLine "1400x1050"  179.26  1400 1504 1656 1912  1050 1051 1054 1103  -HSync +Vsync
        # 1400x1050 @ 100.00 Hz (GTF) hsync: 111.20 kHz; pclk: 214.39 MHz
        ModeLine "1400x1050"  214.39  1400 1512 1664 1928  1050 1051 1054 1112  -HSync +Vsync
        # 1600x1200 @ 100.00 Hz (GTF) hsync: 127.10 kHz; pclk: 280.64 MHz
        ModeLine "1600x1200"  280.64  1600 1728 1904 2208  1200 1201 1204 1271  -HSync +Vsync
    EndSection
    # Auto-generated by Archie mkxcfg
    Section "Device"
        Identifier  "Card0"
        Driver      "vesa"
        VendorName  "All"
        BoardName   "All"
    EndSection
    Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        DefaultColorDepth 16
        SubSection "Display"
            Depth     1
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     4
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     8
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     15
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     16
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     24
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
        SubSection "Display"
            Depth     32
            Modes "1024x768" "800x600" "640x480"
        EndSubSection
    EndSection
    Section "DRI"
        Mode 0666
    EndSection

Maybe you are looking for

  • LabVIEW 2009 crashes at startup with the presence of a certain CRT version on the system

    When installing our LabVIEW integration package on a system running LabVIEW 2009 LabVIEW will crash at startup afterwards. Using 'dependency walker' reveals, that 'nicont.dll' causes this crash because of a side-by-side configuration problem. After s

  • ABAP proxy client call PI with new client 120 in old business system

    Hi all We have a requirement to call PI from ABAP client proxy in synchronous mode via a CRM client 120. CRM client 100 is already configured in the Business system talked above but now we need the same business system to be configured for client 120

  • Can't install Sun One Application Server 7 (Win XP)

    When I run the setup.exe it shows me the following message at the windows console: launching installer....Error writing native components to disk. Aborting wizard Thanks. :)

  • POOR wireless range

    I have a white 13" macbook which i bought about 6 months ago. We have the new BT home hub wireless router (the black V.2 model). I can get the network no problem in the adjacent rooms but as soon as i go upstairs i get nothing. Can anyone explain why

  • Optimum HD setup for Server on Mac Pro

    We are currently running Tiger Server on a Dual 2 G5 and are preparing to migrate to Leopard Server on a new 8-core Mac Pro (I wanted an Xserve, but given the tight purse strings lately, will happily settle for the Mac Pro!!). I will be doing a clean