[Solved (partially)] 100% CPU for Reader

Here is a detailed description why Reader ends up using 100% CPU (output taken from strace, unimportant lines removed):
socket(PF_INET, SOCK_STREAM, IPPROTO_TCP) = 12
connect(12, {sa_family=AF_INET, sin_port=htons(80), sin_addr=inet_addr("192.150.8.100")}, 16) = -1 EINPROGRESS (Operation now in progress)
poll([{fd=3, events=POLLIN}, {fd=12, events=POLLOUT}], 2, 0) = 0 (Timeout)
poll([{fd=3, events=POLLIN}, {fd=12, events=POLLOUT}], 2, 15) = 0 (Timeout)
until here, everything is fine. Reader polls for events on the socket descriptors with a timeout of 15ms.
I our case, Reader is running on a Kiosk system, so connection to most hosts are forbidden, including pmupsw.adobe.com ("192.150.8.100"). So after some time the connection fails.
poll([{fd=3, events=POLLIN}, {fd=12, events=POLLOUT}], 2, 13) = 1 ([{fd=12, revents=POLLERR|POLLHUP}])
Unfortunately, now the poll() returns immediately. Reader does not handle the POLLERR, so it ends up polling the socket in a tight loop.

Running Ubuntu 10.04 LTS on HP6715 notebook. I had the 100% cpu utilization issue. I changed the adobe proxy setting from direct connect to manual. I entered the proxy settings at my company. This fixed the issue. It would be nice if adobe could use the system proxy settings.
This issue was documented here
http://blogs.adobe.com/acroread/2008/04/100_cpu_utilization_problem.html

Similar Messages

  • Doc2text process using 100% cpu for way too long

    I've run into this issue before, and have never received a satisfactory resolution.
    When we publish certain PDF documents via collab to the KD, the doc2text process on our portal servers (also our API servers) spin up to 100% CPU for about 90 seconds. This causes the publish from collab to fail, so we resort to directly uploading the file to the KD via content upload.
    1) Why is doc2text running on our portal servers in the first place? Is this a result of the portal server or api service? If i move the API service off to another machine, will that remove this CPU hog from our front end servers?
    2) Has anyone seen this before, or found a way around it? Is there a newer version of doc2text in 10gR3 that isn't so terrible?
    I'm preparing to move to 1-cpu virtuals in our new environment so any process that takes up 100% of the CPU is going to kill performance.

    Doc2text is native search client functionality used by portal, automation, ws, collab, publisher, etc. The portal components use it when indexing content to search server. It is installed seperately with each portal component. If you have multiple portal components installed on the same box, the ones that use Doc2text will share it from the common folder where it is located. Doc2text uses different libraries for the purpose of raw text extraction and processing, the processed information being sent in a proprietary format to the search server.
    Doc2text is a processor heavy component as it needs to execute intensives tasks necessary to parse and extract raw data from such file formats as Microsoft Office and Adobe Acrobat. Some files may be more complex to extract data from and take longer for this task to complete.
    The best way to increase performance would be to install the various portal components onto their own machines. For example not installing portal and automation on seperate servers. This way when you run a crawler job that imports files, the running of doc2text will not use cpu cycles on the portal web server.

  • Audio Bin - Select unused - Delete - Hangs on 100% CPU for long time

    Hi
    I am running Logic Studio 9.0.2 on OS X 10.5.8 on a Mac Pro. Logic was upgraded from version 7.
    In Audio Bin and "Select Unused" and then "Delete", the application might hang on 100% CPU for hours on large projects.
    Anyone with an idea of what the problem might be? This was not a problem i Logic Pro 7.
    Thanks!
    GD

    I have this same problem, though I'm on 10.5.7. I was hoping maybe updating the OS would help but apparently not. I also get very slow file-selection windows sometimes, like when I go to bounce a file. Navigating to a specific folder is painfully slow. Would like to hear if any Snow Leopard users are experiencing this.
    Bull

  • 10.5.2 Uses 100% CPU for about 10 mins

    Everything was fine on 10.5.1 but 10.5.2 on Windows 7 32bit seems to use 100% CPU (iTunes.exe) for about 10 mins before settling down. I was just about to post 100% CPU when I saw it was back to normal so I closed and reopened it and the same thing has happened. PC has been restarted since it was installed.
    Any idea what is causing this? Can I downgrade - if so, how?
    PS: it's actually using 100% of one core.

    Check out this Apple article -> iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    If you have one of the LSPs mentioned, you may have to do a winsock reset or remove the conflicting software.

  • [SOLVED]Wine 100% cpu usage in some games

    I'm using wine for almost 2yrs now, only to play counterstrike which it runs flawlessly. I today installed nfs undercover and it seems that cpu usage is always 100%(due to nfs.exe). From the nvidia control center I can see that the gpu temp is really low from which I can guess that the gpu is underutilized and so the game runs sluggishly. As I dont game that much in wine, I'm asking u guys that Is it supposed to be like this? or are there any tweaks?
    Last edited by Soumyadeep (2010-09-09 10:46:46)

    Soumyadeep wrote:thank u guys for ur replies, I guess wine is not ready yet for hardcore games but does a good job with wow, cs etc, marking this as solved.
    Generally it is though. What's a 'hardcore' game? I play HoN through wine (long story) and I know that big resource hog NWN2 ran just the same FPS in wine as on the windows install. Those are even DirectX games, the extra cost of DirectX->OpenGL conversion is offset by the fact that you don't have to run a virus scanner and all those junk apps a typical windows install needs.
    IMO wine is made for games of all kind. Now if only it worked better with Office and the Adobe apps....

  • [Solved partially] Sql query for updates compliance

    Hello
    I'm trying (with no success) to translate the "Software+Updates+-+A+Compliance%2fCompliance+1+-+Overall+compliance" report into a sql query that must run for a specific
    Software update group and for a specific Collection ID.
    The expected result should be like the report it self, I mean 3 lines with Kpi (pourcentage).
    The main query in this report is : 
    select
    CollectionID=@CollID,
    Status=sn.StateName,
    cs.NumberOfComputers,
    PComputers=convert(float, isnull(cs.NumberOfComputers, 0)*100.00) / isnull(nullif(cs.NumTotal, 0), 1),
    AuthListID=@AuthListID
    from (select CI_ID, NumTotal, [0]=NumUnknown, [1]=NumPresent+NumNotApplicable, [2]=NumMissing
    from fn_rbac_UpdateSummaryPerCollection(@UserSIDs)
    where CI_ID=@CI_ID and CollectionID=@CollID
    ) cnt
    unpivot (NumberOfComputers for [Status] in ([0], [1], [2])) cs
    left join fn_rbac_StateNames(@UserSIDs) sn on sn.TopicType=300 and sn.StateID=cs.Status
    where cs.NumberOfComputers>0
    order by cs.NumberOfComputers desc
    I have no clue on how to replace or use fr_rbac view when run outside a report.
    Can you please help me ?
    Thanks

    Hi,
    Glad to hear that and thank you for your sharing.
    Best Regards,
    Joyce
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Poor audio quality - iTunes uses 100% CPU for 15-20 seconds

    About 6-7 seconds into an MP3, iTunes pegs my CPU to 100%, and the audio lags or shuts off completely. Protected AAC files play without issue. Converting the MP3 to AAC does not help: the audio and CPU give the same results. Winamp, WMP, and *even QuickTime* can play the same MP3 files without issue. It is only MP3s and only iTunes. I have uninstalled my antivirus, but that did not help. I removed all start up applications and closed any program that wasn't essential to the computer's operation. I have even killed non-essential processes. These files have played in in iTunes previously, it has only been in the last few months that I have had a problem. I have uninstalled and reinstalled the latest version of iTunes just this morning. Nothing has helped, and I'm not about to reformat my PC just to see if that will help when these files play just fine in all my other media players.
    So, to recap:
    - Problem is ONLY with MP3s -> M4Ps play fine
    - Problem is ONLY iTunes -> Quicktime, Windows Media Player, and WinAmp play the MP3 just fine
    Ideas?

    I have no idea what is causing this, but iTunes is rather sensitive to ID3 tag versions - the usual symptom is that it will not play the file.
    As an experiment try selecting an MP3 track, then right click and select convert ID3 tags. Convert to "None".
    I would do this on a copy of the file.

  • [SOLVED] cupsd 100% CPU load

    Right after start my cupsd loads cpu completely
    The only printer connected Canon mp 280
    http://www.fotolink.su/v.php?id=aaf6f9f … 92d44897ba
    Last edited by dr-kart (2014-12-09 07:52:22)

    fennectech wrote:did this happen at the same time you applyed an update   or after restarting after updating  or did it seemingly come out of nowhere  also the dmesg will give you a massive ammount of spam   so pastebin it for us    do dmesg > log   ittl create a file called log in your current directory     we all know terminal emulators have a scrollback limint
    definately it has started from recent update!
    But right now I'm on 3.16 core. And I do have an issue now. And I did have it on my previous 3.12 core.
    And (!) I did NOT have it earlier on 3.12 core. So it started maybe a week ago
    Last edited by dr-kart (2014-12-05 08:19:14)

  • Firefox 4 on Win7 uses 100% CPU for Favicon Animation. Allready reinstalled it, created a new Profile and deleted the old one. Firefox still gets very slow over time. Any more suggestions?

    OS is Win7 64Bit

    You will find appropriate Consumer-specific support by beginning your own, new thread in this forum =>
    http://answers.microsoft.com/en-us/protect/forum/protect_scanning
    ~Robear Dyer (PA Bear) MS MVP-Windows Client since 2002 Disclaimer: MS MVPs neither represent nor work for Microsoft

  • Weblogic cluster consumes 100% CPU and bringing server to its knees.

    I have BEA Weblogic 10.3.1 clustering as part of FMW 11g clustering. This is two node cluster on "Oracle VM" running OEL 4.0 with 4GB Memory and 4GB swap. Install seems to go with little difficulties like 100%CPU for short period but during the configuration always the Java thread consumes 100%.
    Now I am at a point where shared drive is created (Chapter 5.20 of EDG) for HA FileAdapter and Persistence store. Hitting same 100% CPU problem. Looks like thread locking situation.
    ^-- Holding lock: java.io.InputStreamReader@6215c5d[thin lock]
    ^-- Holding lock: java.io.InputStreamReader@6215c5d[thin lock]
    Also noticed the SWAP space is never being used though it has 4GB swap space. It brings the VM to its knees. Thanks in advance for any response.
    Here is the error stack
    ========================
    <Feb 4, 2010 8:23:56 AM EST> <Error> <WebLogicServer> <BEA-000337>
    <[STUCK] ExecuteThread: '1' for queue:
    'weblogic.kernel.Default (self-tuning)' has been busy for "346" seconds working on the request
    "weblogic.kernel.WorkManagerWrapper$1@62171ee", which is more than the configured time (StuckThreadMaxTime) of "300" seconds.
    Stack trace: Thread-22 "[STUCK] ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'
    " <alive, in native, suspended, priority=1, DAEMON>
    jrockit.net.SocketNativeIO.readBytesPinned(SocketNativeIO.java:???)
    jrockit.net.SocketNativeIO.socketRead(SocketNativeIO.java:31)
    java.net.SocketInputStream.socketRead0(SocketInputStream.java:???)
    java.net.SocketInputStream.read(SocketInputStream.java:107)
    weblogic.utils.io.ChunkedInputStream.read(ChunkedInputStream.java:149)
    java.io.InputStream.read(InputStream.java:85)
    com.certicom.tls.record.ReadHandler.readFragment(Unknown Source)
    com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    com.certicom.tls.record.ReadHandler.read(Unknown Source)
    ^-- Holding lock: com.certicom.tls.record.ReadHandler@6254fe1[thin lock]
    com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:250)
    sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:289)
    sun.nio.cs.StreamDecoder.read(StreamDecoder.java:125)
    ^-- Holding lock: java.io.InputStreamReader@6215c5d[thin lock]
    java.io.InputStreamReader.read(InputStreamReader.java:167)
    java.io.BufferedReader.fill(BufferedReader.java:105)
    java.io.BufferedReader.readLine(BufferedReader.java:288)
    ^-- Holding lock: java.io.InputStreamReader@6215c5d[thin lock]
    java.io.BufferedReader.readLine(BufferedReader.java:362)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:286)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:311)
    weblogic.nodemanager.client.NMServerClient.start(NMServerClient.java:90)
    ^-- Holding lock: weblogic.nodemanager.client.SSLClient@62164a2[thin lock]
    weblogic.nodemanager.mbean.StartRequest.start(StartRequest.java:75)
    weblogic.nodemanager.mbean.StartRequest.execute(StartRequest.java:45)
    weblogic.kernel.WorkManagerWrapper$1.run(WorkManagerWrapper.java:63)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:198)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:165)
    }

    Few things that u can try first off
    1. Turn off Native IO
    2 Use this flag
    -DUseSunHttpHandler=true
    3. This stack seems to suggest communication wid NM
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:286)
    weblogic.nodemanager.client.NMServerClient.checkResponse(NMServerClient.java:311)
    Can you stop ur Node Manger and see if it helps..
    If these doesnt help, contact Oracle Support..

  • Finder using 90% cpu for no reason?

    Not sure why. Not using quicklook, Not using cover flow. Just staring at my files.

    Figured it out. Turns out if "Show item info" is enabled for the desktop it will cause Finder to bug out at 100% CPU for some reason. I removed everything on my desktop except a few things (Macintosh HD, No Name volume for FAT32, 2 folders, and an application shortcut)...
    This was found when I was googling the issue and a guy had a similar issue in os x 10.3 ... due to an inability for it to query the file.
    at least it's fixed.. though not sure which folder caused the issues.
    Thanks guys.

  • Uncaught exception puts tomcat on 100% CPU

    Hi all,
    we have a JSF 1.1 application on Tomcat 6.0.13 and have a problem with exceptions. In fact when an uncaught exception occurs, it is logged but then afterwards tomcat gets stuck in 100% CPU for garbage collection.
    Here is an example error:
    java.io.IOException: FileUtils.WriteToFile failed, got: java.io.FileNotFoundException: C:\test\GEARO\UPLOAD\C:\Documents and Settings\Sede\Desktop\apache-tomcat-6.0.14.zip (The filename, directory name, or volume label syntax is incorrect)
         at be.sofico.web.framework.FileUtil.writeFile(FileUtil.java:73)
         at be.sofico.web.extranet.dynamic.files.CustomerUpload.process(CustomerUpload.java:64)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:146)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:92)
         at javax.faces.component.UICommand.broadcast(UICommand.java:332)
         at org.ajax4jsf.component.AjaxViewRoot.processEvents(AjaxViewRoot.java:186)
         at org.ajax4jsf.component.AjaxViewRoot.broadcastEvents(AjaxViewRoot.java:164)
         at org.ajax4jsf.component.AjaxViewRoot.processApplication(AjaxViewRoot.java:352)
         at com.sun.faces.lifecycle.InvokeApplicationPhase.execute(InvokeApplicationPhase.java:95)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:245)
         at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:110)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:213)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.ajax4jsf.webapp.BaseXMLFilter.doXmlFilter(BaseXMLFilter.java:141)
         at org.ajax4jsf.webapp.BaseFilter.doFilter(BaseFilter.java:281)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:147)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:230)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:175)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:261)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:581)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Thread.java:595)You can see we use an ajax4jsf filter.
    Is there any possibility to catch these exceptions and prevent tomcat from blocking the whole application?
    Thanks

    Hi,
    Our application use Tomcat 4.1 , I tried using the solution provided by you but it does not work , j2sdk1.4.1_05 is being used , since i am also facing the same problem , tomcat consumes a lot of memory and the application is very slow

  • 100% CPU with DAQmxRegisterSignalEvent(.., DAQmx_Val_CounterOutputEvent,..) / NIDaqmx 8.71 C client

    Hi All,
    Please see code below for my problem. I removed error checking to make things easily readable.  Whenever I enable callbacks using DAQmx_Val_CounterOutputEven,  the following code utilizes 100% CPU even with the 10Hz counter!!!!  Am I missing something here?  I tried all the options for interrupt based processing instead of busy polling to no avail.  This is just unacceptable.  These days one can't even deliver an app that is permanently running at 100% cpu without raising some eyebrows...
    I must be missing something...
    My application requires that I generate TTL level trigger pulses and at the rising edge of each trigger pulse, I also need to execute some very short C code. This code should start running within .5ms of the trigger edge.  This should be no problem for a modern CPU. This is why I am using DAQmx_Val_CounterOutputEvent.  However, I cannot have NIDaq implement this using busy polling (which I assume it's doing since it's eating 100% cpu).  It is simply not acceptable to be running at 100% CPU for several reasons.  The documentation and this support site talk about interrupt based processing, and the hardware is obviously capable of it.
    So, the 2 questions I have are:
    1. What do I have to do in order to have NIDaq use interrupt based processing instead of busy polling (for the DAQmx_Val_CounterOutputEvent callbacks in my application)?
    2. In addition to (1), can I make it so that my callback only gets called on the rising edge of the trigger signal instead of both the rising and falling edges?  Perhaps I can wire the counter output to a general purpose input and then generate interrupts based on the rising edge that the input measures? 
    Please help,
    Philip
    // currently the callback simply does nothing to make sure i'm not causing the 100% cpu problem
    static int StaticTriggerCallback(TaskHandle taskHandle, int32 signalID, void *callbackData)
    // we will get called once for every rising and once for every falling edge (20hz).  We would prefer to be called only on the rising edge.  Is that possible?
    return 0;
    void TTCameras:tartTimer(void)
     // Configure DAQmx ct3 as our spin camera trigger.  10Hz
     DAQmxCreateTask("", &taskHandle);
     DAQmxCreateCOPulseChanFreq(taskHandle, "/Dev1/ctr3", "CameraSpinTrigger", DAQmx_Val_Hz, DAQmx_Val_Low, 0.0, 10.0, 0.5);
     DAQmxCfgImplicitTiming(taskHandle, DAQmx_Val_ContSamps, 1000);
     DAQmxSetReadWaitMode(taskHandle, DAQmx_Val_WaitForInterrupt);
    // I tried this but it does not help:
     //DAQmxSetRealTimeWaitForNextSampClkWaitMode(taskHandle, DAQmx_Val_WaitForInterrupt);
     // If I register this callback, CPU usage goes to 100%.  This callback needs to be done based on interrupts!
     DAQmxRegisterSignalEvent(taskHandle, DAQmx_Val_CounterOutputEvent, 0, (DAQmxSignalEventCallbackPtr)StaticTriggerCallback, NULL);
    DAQmxStartTask(taskHandle);

    Duplicate post. Look here.
    Regards,
    Chris Delvizis
    National Instruments

  • [SOLVED] mandb hangs, taking 100% CPU

    I have a VPS running Arch (limited to kernel 3.9.4-1 by the provider). The system was unceremoniously rebooted last night due to a power outage at their facility. When it came back up, the mandb process being run by cron was taking 100% of the CPU and had been running for ~10 hours by the time I noticed it.
    I eventually killed the mandb process and re-tried it manually with debugging turned on: `mandb -d`. It appears that processing stops at /usr/share/man/man5/core.5.gz (this is the last output I see, even if I leave it running for an hour or two). Even after the output stops, it is still taking 100% CPU. Anyone have any ideas or other things to try debugging it? I'm all out.
    Last edited by aclindsa (2013-11-26 01:02:42)

    I re-installed man-pages with `pacman -S man-pages` and then received the following messages:
    Purging old database entries in /usr/share/man...
    Processing manual pages under /usr/share/man...
    Updating index cache for path `/usr/share/man/man2'. Wait...mandb: bad fetch on multi key alarm 2
    mandb: index cache /var/cache/man/3354 corrupt
    Then, after running
    mandb -c
    subsequent calls to `mandb` executed successfully. Problem solved. I guess maybe mandb was running when the power outage occurred, corrupting the man index cache... makes me wonder what else got corrupted that I haven't noticed yet.

  • Reader 9.1 (Linux) takes 100% CPU

    Initially when starting Adobe Reader and opening a document everything is fine. But after a few minutes Reader takes up to 100% CPU. This also happens when starting Adobe Reader without opening a document.
    It's Adobe Reader 9.1 (AdobeReader_enu-9.1.0-1.i486) on Fedora 10 (i386)

    Hello there,
    I can reproduce the same issue. I just start acroread (without any options or files), wait some time and suddenly acroread starts to use one whole cpu. Here some information about the system:
    > cat /etc/issue
    CentOS release 5.2 (Final)
    > uname -a
    Linux wumc0310 2.6.18-92.1.22.el5 #1 SMP Tue Dec 16 11:57:43 EST 2008 x86_64 x86_64 x86_64 GNU/Linux
    > acroread -v
    9.1.0
    I also tried the trick with
    > ACRO_DISABLE_FONT_CONFIG=1 acroread
    but it didn't change anything.
    Do you got some ideas how I can track down this problem? I tried to use
    > acroread -DEBUG
    but here absolutely nothing happened, just with
    > acroread -DEBUG acroread
    the reader started and shows
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/Annots.api ... [dlopen success for Annots.api, handle = 0xbf32f68]
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/EScript.api ... [dlopen success for EScript.api, handle = 0xca14620]
    after some minutes the next plugin info occured:
    Loading PlugIn /opt/Adobe/Reader9/Reader/intellinux/plug_ins/EFS.api ... [dlopen success for EFS.api, handle = 0xcc1fad0]
    and some minutes later, the acroread process started to use the whole cpu...
    If I start acroread and try to trace the programm, at first the output looks like:
    gettimeofday({1242055601, 629918}, NULL) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    gettimeofday({1242055601, 629991}, NULL) = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT}], 2, 15) = 0
    gettimeofday({1242055601, 644659}, NULL) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    gettimeofday({1242055601, 644729}, NULL) = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT}], 2, 1) = 0
    gettimeofday({1242055601, 645655}, NULL) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    gettimeofday({1242055601, 645719}, NULL) = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT}], 2, 0) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT}], 2, 0) = 0
    and as soon the cpu consumption has started, the output is:
    gettimeofday({1242055677, 855078}, NULL) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    gettimeofday({1242055677, 855118}, NULL) = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT, revents=POLLERR|POLLHUP}], 2, 5) = 1
    gettimeofday({1242055677, 855158}, NULL) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    gettimeofday({1242055677, 855197}, NULL) = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT, revents=POLLERR|POLLHUP}], 2, 5) = 1
    gettimeofday({1242055677, 855237}, NULL) = 0
    ioctl(3, FIONREAD, [0])                 = 0
    gettimeofday({1242055677, 855277}, NULL) = 0
    poll([{fd=3, events=POLLIN}, {fd=13, events=POLLOUT, revents=POLLERR|POLLHUP}], 2, 5) = 1
    (just for the record)
    Greetings
    Toni

Maybe you are looking for

  • How to configure local disk on OVM Server as storage space to create VMs

    Hello, We have installed OVM Server 3.1.1 on a machine that has 250 GB of Hard disk space [Single disk]. While installing used an option - Remove all partitions and create a new default partition layout. Around 4GB has been used and remaining 246 GB

  • Ibook G4 won't display my hard drive

    My Ibook G4 sometimes crashes and won't then show my Hard drive. I replaced the drive about three weeks ago and this fixed the problem for about three days. I replaced the cable between the hard drive and the logic board last week and this seemed to

  • I can't sync my photo folders in my macbook to my ipad

    I just got a mac book and trying to resync my ipad. I have all my photos located in three separate folders. I plugged in my ipad and opened up the page in itunes to start syncing. When i went to the sync photos page I can't locate any of my folders e

  • My App Store is in American how do I change it back to uk

    I tried to find something on the App Store and got the message not available in the UK only in USA it asked me if I wanted to switch so I pressed yes now my App Store is all American how do I switch it back to UK

  • Broken link files. unable to link

    I am using lightroom 5 on a new mac. Everything was brought over from lightroom 4 on a pc. Of course everything was unlinked. No big deal, I was expecting this. When I click the exclamation point it asks to link. I navigate to the RAW file and select