Labview program stops running correctly after computer is switched on one hour

Hope to get help on this strange problem.
I have a Labview program (executable using a run time version) running on a
portable computer (Dell Inspiron 4000 with Windows ME) which collects
measurement data and stores these to a file over a long time period. When I
start up the portable and then start my Labview program, the program fails
to work correctly exactly one hour after the portable has been started (in
fact, the program remains active but stops collecting and writing data).
However, if I start this Labview program just after that the portable has
already been active for one hour, the program is not interrupted and
continues to run for hours without any problems.
Obvi
ously, I have switched off all power management, screen savers, virus
scanners etc. to avoid interference of these, but without success. I have
run the same Labview program without any problems on a different Windows ME
system. Also on Win98 or 95 systems I have observed no problems. Does anyone
have a tip to which program or process could be activated in Windows ME
exactly one hour after the computer has started up and which might interfere
with Labview applications (when I look at all tasks running under Windows ME
I don't have an idea where to look at first).
Thanks in advance,
Martien

Did you shut off power management in the BIOS setup also?
Sounds like something is scheduled to go to sleep at 1 hour,
either the serial port or hard drive?
"Martien Janssen" wrote in message
news:wfyf7.445764$[email protected]..
> Hope to get help on this strange problem.
>
> I have a Labview program (executable using a run time version) running on a
> portable computer (Dell Inspiron 4000 with Windows ME) which collects
> measurement data and stores these to a file over a long time period. When I
> start up the portable and then start my Labview program, the program fails
> to work correctly exactly one hour after the portable has been started (in
> fact, the program remains active but stops collecting and writing data).
>
However, if I start this Labview program just after that the portable has
> already been active for one hour, the program is not interrupted and
> continues to run for hours without any problems.
>
> Obviously, I have switched off all power management, screen savers, virus
> scanners etc. to avoid interference of these, but without success. I have
> run the same Labview program without any problems on a different Windows ME
> system. Also on Win98 or 95 systems I have observed no problems. Does anyone
> have a tip to which program or process could be activated in Windows ME
> exactly one hour after the computer has started up and which might interfere
> with Labview applications (when I look at all tasks running under Windows ME
> I don't have an idea where to look at first).
>
> Thanks in advance,
>
> Martien
>
>
>
>
>

Similar Messages

  • ITunes has stopped working message after having it open for one minute.

    It's fully updated to iOS 5 and was working fine until now. Running on Windows 7 and worked flawlessly till this point. Any tips? I already uninstalled and reinstalled. Only security software I run is Microdoft Security Essesntials and that has never been an issue. At a loss here.

    iTunes has stopped working message after having it open for one minute.
    I open itunes and a message comes up after a minute "itunes has stopped working". I got the update automatically to my Windows 7 64 bit pc 10.5.0.142.  After reading tons of probelms online about version 10.5
    I have decided to do nothing for now.  Seems people are putting hours into trying to fix it.  I was going to uninstall and reinstall but seems that isn;t working for to many people.
    How do we get some help from apple? 
    Anyone have any answers???  APPLE HELP please!!!!!!!!!!!!!!!

  • RDA Runs daily from 11am - 11pm for every one hour

    Dear All,
    One Job runs daily from 11am - 11pm, for every one hour  its a RDA, to know the data about the sales on every hour of that day, every morning and the night i m doing manually scheduling and stopping the process, is there any process which the process can automatically run between 11am - 11pm daily for every one hour with out any manual effort, kindly suggest me if there is any process type.
    Thank you
    Regards,
    Krishna

    hi krishna,
    in sm37 go to the ur job and select that and goto job in menu bar and say copy and give proper name and then select the copied job and agian goto job in menu and click then it takes to the next screen where you can select start condition and give timings and periodicity and save the job..
    hope it helps
    Bhaskar

  • How long does it take for the IOS 7.1 to finish updating? My phone has been plugged in to my computer for more than one hour and the status bar only shows about less than 1/4 completed. I have an iphone 5s btw.

    My phone has been plugged in to my computer for more than one hour and the status bar only shows about less than 1/4 completed. I have an iphone 5s btw.

    Depends on how strong your wifi connection is.
    you can try a reset hold down the home/sleep button together until you see the apple logo and then release.

  • LabVIEW Program not running if i lock my PC (using an EXE made from LabVIEW)

    Hi everyone 
    I observed some odd behavior when I was running my program on a PC. I prepared an EXE for a LabVIEW program, this am running on another PC. Purpose of the program is to read a text file and follow the command given in that text document, we are accessing parallel port, calling third party EXEs in this. It is not running when I minimize the window or lock the PC. Do we have any property in VI properties for this?
     Please help me in this.
    Thanks
    Anil

    Hi Anil,
    Minimizing the application or locking Windows should not stop the executable from running. Can you reproduce this behavior on the development PC?  Also try to create an executable with a simple VI that counts the number of iteration and check for this behavior ?
    Tunde.

  • Java program stopped running when using JVMPI

    Hi!
    I'm writting a very simple profiler using JVMPI. I intended to pause/continue it by sending signal, like kill -SIGUSR2 PID, to it, but whenever I did this, the java program that ran with the profiler stopped running, however the profiler kept running properly.
    Here's the code of the simple profiler and the testing java program.
    //myprofiler.cc
    #include <jvmpi.h>
    #include <pthread.h>
    #include <stdio.h>
    #include <signal.h>
    void sig_handler_pause(int);
    static JVMPI_Interface *jvmpi_interface;
    void notifyEvent(JVMPI_Event *event) {
    switch(event->event_type) {
    case JVMPI_EVENT_CLASS_LOAD:
    fprintf(stderr, "myprofiler> Class Load : %s\n", event->u.class_load.class_name);
    break;
    case JVMPI_EVENT_OBJECT_ALLOC:
    fprintf(stderr, "myprofiler>object alloc \n");
    break;
    extern "C" {
    JNIEXPORT jint JNICALL JVM_OnLoad(JavaVM jvm, char options, void *reserved) {
    fprintf(stderr, "myprofiler> initializing ..... \n");
    // get jvmpi interface pointer
    if ((jvm->GetEnv((void **)&jvmpi_interface, JVMPI_VERSION_1)) < 0) {
    fprintf(stderr, "myprofiler> error in obtaining jvmpi interface pointer\n");
    return JNI_ERR;
    // initialize jvmpi interface
    jvmpi_interface->NotifyEvent = notifyEvent;
    // enabling class load event notification
    jvmpi_interface->EnableEvent(JVMPI_EVENT_CLASS_LOAD, NULL);
    fprintf(stderr, "myprofiler> .... ok \n\n");
    signal(SIGUSR2,sig_handler_pause);
    return JNI_OK;
    void start(){
              fprintf(stderr,"start...\n");
         jvmpi_interface->EnableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    jvmpi_interface->EnableEvent(JVMPI_EVENT_CLASS_LOAD,NULL);
    void pause(){
              fprintf(stderr,"pause...\n");
              jvmpi_interface->DisableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    jvmpi_interface->DisableEvent(JVMPI_EVENT_CLASS_LOAD,NULL);
    int status=0;
    void sig_handler_pause(int sig){
         if(status == 0){
              start();
              status = 1;
         else if(status == 1){
              pause();
              status = 0;
    //Test.java
    public class Test {
    public static void main(String[] args) {
         try {
                        int i = 0;
    while(true)
                             Thread.sleep(1000);
                        System.out.println(i++);
              catch (Exception e) {
                        e.printStackTrace();
    Here're some notes:
    1)If I didn't call
    jvmpi_interface->EnableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    in "start()" function, the java program Test ran properly after I sent signal to the process by using kill command in an command line;
    or
    2) If I delete "Thread.sleep(1000)" in Test.java, then whether I call
    jvmpi_interface->EnableEvent(JVMPI_EVENT_OBJECT_ALLOC, NULL);
    in "start()" or not, the Test program ran properly after I sent signal to the process.
    It seems to be a thread dead lock, but I'm not sure. Can any body help?Thanks very much.

    I should strongly recommend moving from JVMPI to JVM TI if you can. The reason is that JVMPI has been deprecated since 5.0 and can not be used with Java SE 6 and newer.
    Anyway, the issue you have may be due to the signal you are using. I'm not sure which operating system this is but on Linux the USR2 signal is used for the suspend/resume implementation. Have you looked at the Troubleshooting Guide or the Signal Chaining page for details on how signals are used and how to chain handlers? Another idea is to remove the signal handling code implementation and to use the data dump event. This is supported by both JVMPI and JVM TI so that you get an event (via the QUIT signal).

  • What is required for my program to run on a computer without Java installed

    I was just curious if any body knew how to make a Java program that will open and run on a double click without java being installed on that computer. I've seen people mention that we can create a shortcut (though I'm not sure how) so that the program will run on a double click. I've also seen a link to a program that creates .EXE files but I would like to avoid using that.
    I have a small group of friends that I would like to share one of my programs with, but they are not Java programmers and I don't want to clutter up their Hard Drive with the Java JDK or SDK.

    First, make sure you package your program in a JAR file, will make things easier...
    Under the folder you have the SDK installed on your computer, should be a folder named JRE.
    Make a copy of the JRE in a folder underneath where your JAR file resides, for instance...
    You Jar File is:
    C:\JavaProgs\MyProject\TheJar.jar
    Then put:
    C:\JavaProgs\MyProject\JRE\...
    In the C:\JavaProgs\MyProject\ directory, make a Batch file. Batch files are text document scripts that run windows commands. Just use a plain text editor and create a file called RunTheJar.bat.
    The batch file should consist of exactly 1 line:
    start .\JRE\bin\javaw.exe -jar TheJar.jarThen the users can just double-click the batch file to run your program...

  • [SOLVED] I can't get X to run correctly after new install

    Hi all,
    Over the last few days I have been trying to get Arch Linux installed on an old computer that I have. The only major hurdle that I have had so far has been getting wireless to work (no wired connection available here). I got that sorted out yesterday though with a bit of research
    I haven't been so lucky getting X to run though. Following the Beginners' Guide, I have gotten up to the part where I have to configure and test X. This is what I have done so far:
    Basically I have tried to use Xorg -configure to auto-create an Xorg.conf, which seemed to work (as in, the file got created and looked okay).
    I then set up hotplugging with HAL, setting up everything as it says in the Beginner's guide.
    When I ran the Xorg test with X -config /etc/X11/xorg.conf, I got a black screen with no mouse or anything.
    I rechecked xorg.conf to make sure the driver was correct (it's set to "radeon" which seems to be right). I also checked the horizontal and  vertical refresh are set correctly - which they were (autodetected correctly by Xorg -configure).
    I then had a look through the Xorg page on the wiki, but nothing much there seemed to help.
    I then decided to not use hotplugging with HAL, so I removed it from starting at startup and set up my xorg.conf to have the autoadddevices as false.
    After that, I am having the exact same problem when I run the Xorg test (X -config /etc/X11/xorg.conf).
    I really have no clues as to what to do now, does anyone have any tips for an Arch Linux n00b?
    My graphics are provided onboard by an ATI RS480 (Radeon Xpress 200G Series). I am using the "radeon" driver, provided by the xf86-video-ati package. My screen is an LG FLATRON L246WH.
    My relevant config files are:
    xorg.conf xorg.conf
    ~/xinitrc doesn't exist for me.
    /var/log/Xorg.0.log.old isn't able to be uploaded by wgetpaste for some reason... Using the verbose switch indicates that it's saving to /dev/null. I'll keep trying to work out how to get this file uploaded somewhere... it's quite long - 881 lines.
    Last edited by NovaAesa (2009-08-09 04:16:51)

    Did you miss the step to copy the skeleton .xinitrc to your home directory? Please do this. Then try starting X as a normal user, not root.
    You can also try starting the Xserver without any xorg.conf file as jdiez has done. That works for many people.
    To lessen your copy and paste problems, and to help you sort out the logfile, try the following two commands as a normal user in your home directory:
    grep "(EE)" /var/log/Xorg.0.log > xorg_faults
    grep "(WW)" /var/log/Xorg.0.log >> xorg_faults
    This will locate the log lines displaying errors (EE) and then warnings (WW) and write them to the file ~/xorg_faults. Errors will be listed first. This file should be much smaller than the original Xorg.0.log.
    For hot-plugging and HAL, make sure you have dbus installed.
    pacman -Q dbus
    If it's not there, you should install it with pacman.  HAL is supposed to start dbus, but I'm a belt and suspenders person, so I list dbus then hal in my /etc/rc.conf daemons.
    The wiki also has an article on Xorg that may be of help to you.
    Last edited by thisoldman (2009-08-09 03:35:31)

  • XtremeGamer stops working correctly after a wh

    I've bought brand new computer with XtremeGamer, and when im playing some games, like Supreme Commander, almost everytime when i've played about 5-30 min. every sound/music stops and i start to hear whizzing noise. It doesn't stop until i restart my computer and start all over again. I've read help topics and such but i can't figure out what is causing that problem, i might quess its about those "computer goes kneeling" games which needs powerful machine to handle but i don't know how to fix it.

    Lone_Wolf wrote:
    i'm a newbie when it comes to call traces, but i do see a lot of reiserfs related messages.
    I'd check for harddrive problems, and if you use diskquota verify they are not the cause.
    I have checked "smartctl -a" output and it show zerro Reallocated_Sector_Ct counters on both drives (I use soft raid-1 and I cannot run longtime disk checks). Also I have umounted /dev/md1 (this is separate partition for ftp service and assuming that trace contains strings about vsftpd) and checked it with reiserfsck -- no errors. Then I've mounted it back and checket quotas -- all seems fine. I cannot turn off quotas.
    Seems that I get underground knocking problem :-) or electromagnetic compatibility problem ...

  • I can't  get my program to run correctly

    I made a calculator but i can't get the values to update correctly. If you run my code you'll see what I'm talking about. The value number isn't updating and I can only enter in a double digit number (using the buttons) as the initial number. I think its a problem with my boolean statement, but I've tried everything I could think of and things only get worse. (I still haven't figured out the decimal button either.)
       import java.awt.BorderLayout; 
       import java.awt.Container;
       import java.awt.GridLayout;
       import java.awt.event.ActionEvent;
       import java.awt.event.ActionListener;
       import java.awt.event.WindowAdapter;
       import java.awt.event.WindowEvent;
       import javax.swing.JButton; 
       import javax.swing.JFrame;
       import javax.swing.JLabel;
       import javax.swing.JPanel;
       import javax.swing.JScrollPane;
       import javax.swing.JTextArea;
       import javax.swing.JTextField;
       public class CalculatorFrame4 extends JFrame
          public CalculatorFrame4()
                   JPanel calculator=new JPanel();
                   mainPanel();
                   pack();
              public void mainPanel()
                   number=0;
                   nextNum=0;
                   result=0;
                   operator="=";
                   start=true;        
                   numberField =new JTextField();
                   numberField.setEditable(true);
                   final JButton button1 =new JButton("1");
                   final JButton button2 =new JButton("2");
                   final JButton button3 =new JButton("3");
                   final JButton button4 =new JButton("4");
                   final JButton button5 =new JButton("5");
                   final JButton button6 =new JButton("6");
                   final JButton button7 =new JButton("7");
                   final JButton button8 =new JButton("8");
                   final JButton button9 =new JButton("9");
                   final JButton button0 =new JButton("0");
                   final JButton divbutton =new JButton("/");
                   final JButton multbutton =new JButton("*");
                   final JButton minusbutton =new JButton("-");
                   final JButton plusbutton =new JButton("+");
                   final JButton decbutton =new JButton(".");
                   final JButton equalsbutton =new JButton("=");
                   class NumberListener implements ActionListener
                        public void actionPerformed(ActionEvent event)
                             Object source =event.getSource();
                             if (start)
                                  if (source == button1)
                                       numberField.setText(numberField.getText()+1);                                   
                                  else if (source == button2)
                                       numberField.setText(numberField.getText()+2);
                                  else if (source == button3)
                                       numberField.setText(numberField.getText()+3);
                                  else if (source == button4)
                                       numberField.setText(numberField.getText()+4);
                                  else if (source == button5)
                                       numberField.setText(numberField.getText()+5);
                                  else if (source == button6)
                                       numberField.setText(numberField.getText()+6);
                                  else if (source == button7)
                                       numberField.setText(numberField.getText()+7);
                                  else if (source == button8)
                                       numberField.setText(numberField.getText()+8);
                                  else if (source == button9)
                                       numberField.setText(numberField.getText()+9);
                                  else if (source == button0)
                                       numberField.setText(numberField.getText()+0);
                                  number=Double.parseDouble(numberField.getText());
                             else
                                  numberField.setText("");
                                  if (source == button1)
                                       numberField.setText(numberField.getText()+1);
                                  else if (source == button2)
                                       numberField.setText(numberField.getText()+2);
                                  else if (source == button3)
                                       numberField.setText(numberField.getText()+3);
                                  else if (source == button4)
                                       numberField.setText(numberField.getText()+4);
                                  else if (source == button5)
                                       numberField.setText(numberField.getText()+5);
                                  else if (source == button6)
                                       numberField.setText(numberField.getText()+6);
                                  else if (source == button7)
                                       numberField.setText(numberField.getText()+7);
                                  else if (source == button8)
                                       numberField.setText(numberField.getText()+8);
                                  else if (source == button9)
                                       numberField.setText(numberField.getText()+9);
                                  else if (source == button0)
                                       numberField.setText(numberField.getText()+0);
                                  nextNum=Double.parseDouble(numberField.getText());
                   ActionListener listener =new NumberListener();
                   button1.addActionListener(listener);
                   button2.addActionListener(listener);
                   button3.addActionListener(listener);
                   button4.addActionListener(listener);
                   button5.addActionListener(listener);
                   button6.addActionListener(listener);
                   button7.addActionListener(listener);
                   button8.addActionListener(listener);
                   button9.addActionListener(listener);
                   button0.addActionListener(listener);           
                   class CalculateListener implements ActionListener
                        public void actionPerformed(ActionEvent event)
                             numberField.setText("");
                             Object source=event.getSource();
                             if (source==divbutton)
                                  operator="/";
                             else if (source==multbutton)
                                  operator="*";
                             else if (source==plusbutton)
                                  operator="+";
                             else if (source==minusbutton)
                                  operator="-";
                             else if (source==equalsbutton)     
                                  operate(nextNum);
                                  numberField.setText(""+number);
                             start=false;
                   ActionListener calclistener =new CalculateListener();
                   divbutton.addActionListener(calclistener);
                   multbutton.addActionListener(calclistener);
                   plusbutton.addActionListener(calclistener);
                   minusbutton.addActionListener(calclistener);
                   equalsbutton.addActionListener(calclistener);
                   JPanel controlPanel = new JPanel();
                   controlPanel.setLayout(new GridLayout(4, 4));
                 controlPanel.add(numberField);
             controlPanel.add(button7);
             controlPanel.add(button8);
             controlPanel.add(button9);
                   controlPanel.add(divbutton);
               controlPanel.add(button4);
             controlPanel.add(button5);
             controlPanel.add(button6);
                   controlPanel.add(multbutton);
                   controlPanel.add(button1);
             controlPanel.add(button2);
             controlPanel.add(button3);
                   controlPanel.add(minusbutton);
                   controlPanel.add(decbutton);
             controlPanel.add(button0);
             controlPanel.add(equalsbutton);
                   controlPanel.add(plusbutton);
             JPanel clearPanel = new JPanel();
                   final JButton clearbutton =new JButton("CLEAR");
             clearPanel.add(clearbutton);
                   class ClearListener implements ActionListener
                        public void actionPerformed(ActionEvent event)
                             number=0;
                             nextNum=0;
                             numberField.setText("");
                 ActionListener alistener =new ClearListener();
                   clearbutton.addActionListener(alistener);
                   getContentPane().add(numberField, BorderLayout.NORTH);
             getContentPane().add(controlPanel, BorderLayout.CENTER);
             getContentPane().add(clearPanel, BorderLayout.SOUTH);
              public void operate(double otherNum)
                   if (operator.equals("/"))
                        number = number/otherNum;
                   else if (operator.equals("*"))
                        number = number*otherNum;                                
                   else if (operator.equals("+"))
                        number = number+otherNum;
                   else if (operator.equals("-"))
                        number = number-otherNum;
              private boolean start;
              private double number;
              private double nextNum;
              private double result;
              private String operator;
              private JTextField numberField;
         }Here's the test program
       import javax.swing.JFrame;
       public class CalculatorTest
          public static void main(String[] args)
             JFrame frame = new CalculatorFrame4();
             frame.setTitle("Calculator");
             frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
             frame.show();
       }

    I am no expert, in fact I am a very newbie. But I was trying to get my code to update too, and I didn't know I had to call the validate() function...try doing that, if you haven't already, also read up on validate() from the Component (or Container) API. I didn't really look through your code, I wouldn't be able to keep it in my head anyway.

  • Server stops working correctly after Call Trace

    I use linux-lts on servers. This one is running 3.10.16-1-lts and today it got the next call trace. Before this I've suspected proftpd like a possible reason and have changed it to vsftpd. There were the same server crashes with proftpd. In this case server uptime was 22 days.
    What does this mean ? How can I fix this ? Is any workaround ?
    Nov 19 06:05:22 my-server kernel: [2812442.750027] INFO: task kworker/0:2:18034 blocked for more than 120 seco
    nds.
    Nov 19 06:05:22 my-server kernel: [2812442.750132] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
    this message.
    Nov 19 06:05:22 my-server kernel: [2812442.750251] kworker/0:2 D ffff88007b6bb028 0 18034 2 0x000
    00000
    Nov 19 06:05:22 my-server kernel: [2812442.750269] Workqueue: events_long flush_old_commits [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750271] ffff880009a4bc50 0000000000000046 ffff880009a4bfd8 0000000
    000014140
    Nov 19 06:05:22 my-server kernel: [2812442.750274] ffff880009a4bfd8 0000000000014140 ffff88007c0bc280 ffff880
    07c7eb380
    Nov 19 06:05:22 my-server kernel: [2812442.750277] 0000000000000000 0000000000000fff 0000000000000000 0000000
    000000000
    Nov 19 06:05:22 my-server kernel: [2812442.750280] Call Trace:
    Nov 19 06:05:22 my-server kernel: [2812442.750287] [<ffffffff814b4a69>] schedule+0x29/0x70
    Nov 19 06:05:22 my-server kernel: [2812442.750290] [<ffffffff814b4dfe>] schedule_preempt_disabled+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.750292] [<ffffffff814b3524>] __mutex_lock_slowpath+0x144/0x320
    Nov 19 06:05:22 my-server kernel: [2812442.750295] [<ffffffff814b3712>] mutex_lock+0x12/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.750301] [<ffffffffa020204b>] reiserfs_write_lock+0x2b/0x40 [reiser
    fs]
    Nov 19 06:05:22 my-server kernel: [2812442.750306] [<ffffffffa01eae9f>] reiserfs_write_dquot+0x1f/0xd0 [reise
    rfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750310] [<ffffffff811da334>] dquot_writeback_dquots+0x194/0x1e0
    Nov 19 06:05:22 my-server kernel: [2812442.750315] [<ffffffffa01e9f2b>] reiserfs_sync_fs+0x1b/0x80 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750318] [<ffffffff814b33de>] ? mutex_unlock+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.750321] [<ffffffff81387d97>] ? od_dbs_timer+0xc7/0x160
    Nov 19 06:05:22 my-server kernel: [2812442.750326] [<ffffffffa01e9fd4>] flush_old_commits+0x44/0x50 [reiserfs
    Nov 19 06:05:22 my-server kernel: [2812442.750330] [<ffffffff8106fb3b>] process_one_work+0x16b/0x3e0
    Nov 19 06:05:22 my-server kernel: [2812442.750332] [<ffffffff810704d1>] worker_thread+0x121/0x3b0
    Nov 19 06:05:22 my-server kernel: [2812442.750335] [<ffffffff810703b0>] ? manage_workers.isra.23+0x2b0/0x2b0
    Nov 19 06:05:22 my-server kernel: [2812442.750338] [<ffffffff810765a0>] kthread+0xc0/0xd0
    Nov 19 06:05:22 my-server kernel: [2812442.750340] [<ffffffff810764e0>] ? kthread_create_on_node+0x120/0x120
    Nov 19 06:05:22 my-server kernel: [2812442.750344] [<ffffffff814be2ac>] ret_from_fork+0x7c/0xb0
    Nov 19 06:05:22 my-server kernel: [2812442.750346] [<ffffffff810764e0>] ? kthread_create_on_node+0x120/0x120
    Nov 19 06:05:22 my-server kernel: [2812442.750349] INFO: task vsftpd:25898 blocked for more than 120 seconds.
    Nov 19 06:05:22 my-server kernel: [2812442.750448] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables
    this message.
    Nov 19 06:05:22 my-server kernel: [2812442.750564] vsftpd D ffff88007b6bb028 0 25898 25893 0x00000100
    Nov 19 06:05:22 my-server kernel: [2812442.750566] ffff88004bbdd2c0 0000000000000086 ffff88004bbddfd8 0000000000014140
    Nov 19 06:05:22 my-server kernel: [2812442.750569] ffff88004bbddfd8 0000000000014140 ffff8800033a18f0 ffff88004bbddfd8
    Nov 19 06:05:22 my-server kernel: [2812442.750572] ffff88004bbdd3b8 0000000000000000 ffff880000000001 ffff880037e4f4e0
    Nov 19 06:05:22 my-server kernel: [2812442.750574] Call Trace:
    Nov 19 06:05:22 my-server kernel: [2812442.750580] [<ffffffffa01f3eaf>] ? search_for_position_by_key.part.14+0xaf/0x290 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750586] [<ffffffffa01f53d9>] ? search_for_position_by_key+0x49/0x90 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750589] [<ffffffff814b4a69>] schedule+0x29/0x70
    Nov 19 06:05:22 my-server kernel: [2812442.750591] [<ffffffff814b4dfe>] schedule_preempt_disabled+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.750593] [<ffffffff814b3524>] __mutex_lock_slowpath+0x144/0x320
    Nov 19 06:05:22 my-server kernel: [2812442.750596] [<ffffffff814b3712>] mutex_lock+0x12/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.750601] [<ffffffffa020204b>] reiserfs_write_lock+0x2b/0x40 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750606] [<ffffffffa01eb9c5>] reiserfs_quota_write+0x185/0x2b0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750608] [<ffffffff814b33de>] ? mutex_unlock+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.750613] [<ffffffffa02020a5>] ? reiserfs_write_unlock+0x45/0x50 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750617] [<ffffffff811683ae>] ? __kmalloc+0x2e/0x220
    Nov 19 06:05:22 my-server kernel: [2812442.750622] [<ffffffffa0202119>] ? reiserfs_write_unlock_once+0x19/0x20 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750625] [<ffffffffa07ed0d4>] ? getdqbuf+0x14/0x40 [quota_tree]
    Nov 19 06:05:22 my-server kernel: [2812442.750628] [<ffffffffa07ed913>] qtree_write_dquot+0xb3/0x150 [quota_tree]
    Nov 19 06:05:22 my-server kernel: [2812442.750631] [<ffffffffa07f205b>] v2_write_dquot+0x2b/0x30 [quota_v2]
    Nov 19 06:05:22 my-server kernel: [2812442.750634] [<ffffffff811d99fb>] dquot_commit+0x8b/0xc0
    Nov 19 06:05:22 my-server kernel: [2812442.750638] [<ffffffffa01eaf04>] reiserfs_write_dquot+0x84/0xd0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750643] [<ffffffffa01eaf82>] reiserfs_mark_dquot_dirty+0x32/0x50 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750646] [<ffffffff811dd3b1>] __dquot_alloc_space+0x161/0x210
    Nov 19 06:05:22 my-server kernel: [2812442.750649] [<ffffffff81085ca3>] ? wake_up_process+0x23/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.750655] [<ffffffffa01f707f>] reiserfs_insert_item+0xef/0x350 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750658] [<ffffffff8108f46f>] ? load_balance+0xff/0x780
    Nov 19 06:05:22 my-server kernel: [2812442.750661] [<ffffffff81082b2a>] ? update_rq_clock.part.66+0x1a/0x100
    Nov 19 06:05:22 my-server kernel: [2812442.750665] [<ffffffff8106213b>] ? lock_timer_base.isra.35+0x2b/0x50
    Nov 19 06:05:22 my-server kernel: [2812442.750667] [<ffffffff81061d17>] ? internal_add_timer+0x17/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.750669] [<ffffffff810623d1>] ? mod_timer_pending+0xe1/0x180
    Nov 19 06:05:22 my-server kernel: [2812442.750672] [<ffffffff8126018e>] ? cpumask_next_and+0x2e/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.750675] [<ffffffff8126018e>] ? cpumask_next_and+0x2e/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.750677] [<ffffffff8108ea83>] ? find_busiest_group+0x133/0xa20
    Nov 19 06:05:22 my-server kernel: [2812442.750683] [<ffffffffa01f7edd>] indirect2direct+0x1fd/0x280 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750685] [<ffffffff814b3302>] ? __mutex_unlock_slowpath+0x82/0x150
    Nov 19 06:05:22 my-server kernel: [2812442.750691] [<ffffffffa01f6389>] reiserfs_cut_from_item+0x319/0x760 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750693] [<ffffffff8126018e>] ? cpumask_next_and+0x2e/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.750695] [<ffffffff8126018e>] ? cpumask_next_and+0x2e/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.750702] [<ffffffffa01f69f3>] reiserfs_do_truncate+0x223/0x520 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750704] [<ffffffff814b3302>] ? __mutex_unlock_slowpath+0x82/0x150
    Nov 19 06:05:22 my-server kernel: [2812442.750710] [<ffffffffa01e0fbf>] reiserfs_truncate_file+0x1ef/0x3a0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750715] [<ffffffffa01e5632>] reiserfs_file_release+0x292/0x350 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750718] [<ffffffff81181f14>] __fput+0xa4/0x230
    Nov 19 06:05:22 my-server kernel: [2812442.750720] [<ffffffff8118215e>] ____fput+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.750723] [<ffffffff8107343f>] task_work_run+0x9f/0xe0
    Nov 19 06:05:22 my-server kernel: [2812442.750726] [<ffffffff81011d8c>] do_notify_resume+0x8c/0xa0
    Nov 19 06:05:22 my-server kernel: [2812442.750729] [<ffffffff814be61a>] int_signal+0x12/0x17
    Nov 19 06:05:22 my-server kernel: [2812442.750731] INFO: task vsftpd:25904 blocked for more than 120 seconds.
    Nov 19 06:05:22 my-server kernel: [2812442.750830] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Nov 19 06:05:22 my-server kernel: [2812442.750946] vsftpd D ffff88007b6bc950 0 25904 25899 0x00000100
    Nov 19 06:05:22 my-server kernel: [2812442.750949] ffff880062c6b680 0000000000000082 ffff880062c6bfd8 0000000000014140
    Nov 19 06:05:22 my-server kernel: [2812442.750951] ffff880062c6bfd8 0000000000014140 ffff8800033a2140 ffffffff811afd1f
    Nov 19 06:05:22 my-server kernel: [2812442.750954] ffff8800081cc388 ffff880062c6b910 ffff880062c6bdd8 0000000000000000
    Nov 19 06:05:22 my-server kernel: [2812442.750957] Call Trace:
    Nov 19 06:05:22 my-server kernel: [2812442.750960] [<ffffffff811afd1f>] ? __find_get_block+0xbf/0x230
    Nov 19 06:05:22 my-server kernel: [2812442.750966] [<ffffffffa01f7242>] ? reiserfs_insert_item+0x2b2/0x350 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750968] [<ffffffff810772f5>] ? wake_up_bit+0x25/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.750971] [<ffffffff811ae6f7>] ? unlock_buffer+0x17/0x20
    Nov 19 06:05:22 my-server kernel: [2812442.750973] [<ffffffff814b4a69>] schedule+0x29/0x70
    Nov 19 06:05:22 my-server kernel: [2812442.750976] [<ffffffff814b4dfe>] schedule_preempt_disabled+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.750978] [<ffffffff814b3524>] __mutex_lock_slowpath+0x144/0x320
    Nov 19 06:05:22 my-server kernel: [2812442.750980] [<ffffffff814b3712>] mutex_lock+0x12/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.750983] [<ffffffff811d9999>] dquot_commit+0x29/0xc0
    Nov 19 06:05:22 my-server kernel: [2812442.750988] [<ffffffffa01eaf04>] reiserfs_write_dquot+0x84/0xd0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750993] [<ffffffffa01eaf82>] reiserfs_mark_dquot_dirty+0x32/0x50 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.750996] [<ffffffff811dd579>] __dquot_free_space+0x119/0x2b0
    Nov 19 06:05:22 my-server kernel: [2812442.750998] [<ffffffff810772f5>] ? wake_up_bit+0x25/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.751003] [<ffffffffa01d944c>] _reiserfs_free_block+0x18c/0x1d0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751008] [<ffffffffa01d9502>] reiserfs_free_block+0x72/0xb0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751013] [<ffffffffa01f5813>] prepare_for_delete_or_cut+0x3a3/0x570 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751018] [<ffffffffa01f612a>] reiserfs_cut_from_item+0xba/0x760 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751021] [<ffffffff81089388>] ? __enqueue_entity+0x78/0x80
    Nov 19 06:05:22 my-server kernel: [2812442.751027] [<ffffffffa01f69f3>] reiserfs_do_truncate+0x223/0x520 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751030] [<ffffffff814b3301>] ? __mutex_unlock_slowpath+0x81/0x150
    Nov 19 06:05:22 my-server kernel: [2812442.751035] [<ffffffffa01e0fbf>] reiserfs_truncate_file+0x1ef/0x3a0 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751040] [<ffffffffa01e5632>] reiserfs_file_release+0x292/0x350 [reiserfs]
    Nov 19 06:05:22 my-server kernel: [2812442.751042] [<ffffffff81181f14>] __fput+0xa4/0x230
    Nov 19 06:05:22 my-server kernel: [2812442.751045] [<ffffffff8118215e>] ____fput+0xe/0x10
    Nov 19 06:05:22 my-server kernel: [2812442.751047] [<ffffffff8107343f>] task_work_run+0x9f/0xe0
    Nov 19 06:05:22 my-server kernel: [2812442.751049] [<ffffffff81011d8c>] do_notify_resume+0x8c/0xa0
    Nov 19 06:05:22 my-server kernel: [2812442.751052] [<ffffffff814be61a>] int_signal+0x12/0x17
    Nov 19 06:05:22 my-server kernel: [2812442.751055] INFO: task kworker/u8:0:30662 blocked for more than 120 seconds.
    Nov 19 06:05:22 my-server kernel: [2812442.751158] "echo 0 > /proc/sys/kernel/hung_task_timeout_secs" disables this message.
    Nov 19 06:05:22 my-server kernel: [2812442.751273] kworker/u8:0 D ffff880010395a10 0 30662 2 0x00000000
    Nov 19 06:05:22 my-server kernel: [2812442.751278] Workqueue: writeback bdi_writeback_workfn (flush-9:1)
    Nov 19 06:05:22 my-server kernel: [2812442.751280] ffff880010395980 0000000000000046 ffff880010395fd8 0000000000014140
    Nov 19 06:05:22 my-server kernel: [2812442.751282] ffff880010395fd8 0000000000014140 ffff880011b78850 ffffffffa0096f80
    Nov 19 06:05:22 my-server kernel: [2812442.751285] ffff880046e79100 0000000000000020 ffff880046e79158 ffff88007b1c0000
    Nov 19 06:05:22 my-server kernel: [2812442.751288] Call Trace:
    Nov 19 06:05:22 my-server kernel: [2812442.751293] [<ffffffff81244eab>] ? blk_rq_map_sg+0x8b/0x1f0
    Nov 19 06:05:22 my-server kernel: [2812442.751296] [<ffffffff8111ab50>] ? filemap_fdatawait+0x30/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.751299] [<ffffffff814b4a69>] schedule+0x29/0x70
    Nov 19 06:05:22 my-server kernel: [2812442.751301] [<ffffffff814b4cef>] io_schedule+0x8f/0xe0
    Nov 19 06:05:22 my-server kernel: [2812442.751303] [<ffffffff8111ab5e>] sleep_on_page+0xe/0x20
    Nov 19 06:05:22 my-server kernel: [2812442.751306] [<ffffffff814b28eb>] __wait_on_bit_lock+0x5b/0xc0
    Nov 19 06:05:22 my-server kernel: [2812442.751308] [<ffffffff8111ac9a>] __lock_page+0x6a/0x70
    Nov 19 06:05:22 my-server kernel: [2812442.751310] [<ffffffff81077340>] ? autoremove_wake_function+0x40/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.751313] [<ffffffff81127361>] ? pagevec_lookup_tag+0x21/0x30
    Nov 19 06:05:22 my-server kernel: [2812442.751316] [<ffffffff81124f73>] write_cache_pages+0x403/0x4b0
    Nov 19 06:05:22 my-server kernel: [2812442.751319] [<ffffffff81124890>] ? mapping_tagged+0x20/0x20
    Nov 19 06:05:22 my-server kernel: [2812442.751321] [<ffffffff81125060>] generic_writepages+0x40/0x60
    Nov 19 06:05:22 my-server kernel: [2812442.751324] [<ffffffff811266c5>] do_writepages+0x35/0x40
    Nov 19 06:05:22 my-server kernel: [2812442.751327] [<ffffffff811a7be0>] __writeback_single_inode+0x40/0x210
    Nov 19 06:05:22 my-server kernel: [2812442.751329] [<ffffffff811a8915>] writeback_sb_inodes+0x195/0x400
    Nov 19 06:05:22 my-server kernel: [2812442.751332] [<ffffffff811a8c1f>] __writeback_inodes_wb+0x9f/0xd0
    Nov 19 06:05:22 my-server kernel: [2812442.751334] [<ffffffff811a8e83>] wb_writeback+0x233/0x2b0
    Nov 19 06:05:22 my-server kernel: [2812442.751337] [<ffffffff811a9665>] wb_do_writeback+0x1e5/0x1f0
    Nov 19 06:05:22 my-server kernel: [2812442.751340] [<ffffffff811a96ea>] bdi_writeback_workfn+0x7a/0x1d0
    Nov 19 06:05:22 my-server kernel: [2812442.751342] [<ffffffff8106fb3b>] process_one_work+0x16b/0x3e0
    Nov 19 06:05:22 my-server kernel: [2812442.751345] [<ffffffff810704d1>] worker_thread+0x121/0x3b0
    Nov 19 06:05:22 my-server kernel: [2812442.751347] [<ffffffff810703b0>] ? manage_workers.isra.23+0x2b0/0x2b0
    Nov 19 06:05:22 my-server kernel: [2812442.751350] [<ffffffff810765a0>] kthread+0xc0/0xd0
    Nov 19 06:05:22 my-server kernel: [2812442.751352] [<ffffffff810764e0>] ? kthread_create_on_node+0x120/0x120
    Nov 19 06:05:22 my-server kernel: [2812442.751355] [<ffffffff814be2ac>] ret_from_fork+0x7c/0xb0
    Nov 19 06:05:22 my-server kernel: [2812442.751357] [<ffffffff810764e0>] ? kthread_create_on_node+0x120/0x120
    After this load average slowly gets to 300 , some services die and server does not reboots on reboot command and even sysrq does not helped today (echo "s" | tee /proc/sysrq-trigger ; echo "u" | tee /proc/sysrq-trigger ; echo "b" | tee /proc/sysrq-trigger).
    Help me pleace :-).

    Lone_Wolf wrote:
    i'm a newbie when it comes to call traces, but i do see a lot of reiserfs related messages.
    I'd check for harddrive problems, and if you use diskquota verify they are not the cause.
    I have checked "smartctl -a" output and it show zerro Reallocated_Sector_Ct counters on both drives (I use soft raid-1 and I cannot run longtime disk checks). Also I have umounted /dev/md1 (this is separate partition for ftp service and assuming that trace contains strings about vsftpd) and checked it with reiserfsck -- no errors. Then I've mounted it back and checket quotas -- all seems fine. I cannot turn off quotas.
    Seems that I get underground knocking problem :-) or electromagnetic compatibility problem ...

  • In FF29.0 bookmarks on the menu bar stop working correctly after exiting 'Customize': has anyone else noticed this?

    Shortly after installing FF29.0 I noticed that the bookmarks menu from the 'Menu Bar' - NOT the new one that appears on the right of the screen - was not working correctly: specifically, when right-clicking on a bookmark to look for 'Open in a New tab' all the options were greyed out and I now realize that this occurs after exiting the 'Customize' screen, which effect I have consistently duplicated several times now; to restore functionality I have on each occasion had to close and re-open Firefox. This error does not appear to occur with the new bookmark menu that is associated with the bookmark icon at the top right of the screen. Has anyone else noticed this error?
    (Personally, I prefer the bookmark menu from the menu bar, which incidentally I find easier to read than the new one and I like menu bars anyway.)
    Many thanks.

    Thank you for your input. If you have more input on the new features please check out [input.mozilla.org]
    The bookmar bar is still available with the add on bar add on. Check it out in [addons.mozilla.com]

  • The image sequence function stopped working correctly after recent update?

    I have been using this function in quicktime 7 pro several times a week on a large project for over a year. After the most recent update to mavericks, the DSLR and gopro jpegs now open in digitized chunks of random colours. I have not changed my workflow or the gear in any way. I used the exact same files on my macbook air, without the recent OS update and was able to open and export the files like normal.
    The updated machine is an iMac running OS X 10.9.2 with 3.4GHz i7 and 32gb

    I'm still experiencing this problem. Is there anyone else who uses this function and has recently run into trouble?
    What image resolution(s) are you using for your image sequences?

  • Problem getting program to run correctly

    I have an assignment where I need to write a program inputting test scores and outputting the minimum, maximum, and average scores. The program runs, but I cant get the min and max scores right. Also, pressing 999 doesn't force the program to quit.
    Here is what I have...
    import java.util.Scanner; //For scanner class
    import java.text.DecimalFormat;
    public class Testscores
    { public static void main (String [] args)
         {//instructions
         System.out.println("Enter test scores, and get the lowest score, the highest score, "
              + "and the average. ");
         System.out.println("Enter 999 to quit. ");
         //scanner
         Scanner kbd = new Scanner (System.in);
         //variables
         int score = 0;
         int total = 0;
         int count = 0;
         final int maxposs = 100;
         final int minposs = 0;
         int min = maxposs;
         int max = minposs;
         final int sentinel = 999;
         //input
         while (score >= 0)
         if (score <= 100 && score >=0)
         {System.out.print("Enter a score [0..100] (999 to quit): ");
         score = kbd.nextInt();
         total += score;
         count ++;
         else
         System.out.print(" Enter only 0..100 (999 to quit): ");
         score = kbd.nextInt();
         if (score < min && score > 0)
         {min = score;
         //output
         DecimalFormat formatter = new DecimalFormat ("#0.00");
         if (count >0) //genuine scores entered
         {System.out.println("The minimum score is " + min + "." );
         System.out.println("The maximum score is " + max + "." );
         float average = (float) total / (float) count;
         System.out.println("The average score is " + average + ".");

    import java.util.Scanner;             //For scanner class
    import java.text.DecimalFormat;
    public class TRx
        public static void main (String [] args)
            //instructions
            System.out.println("Enter test scores, and get the lowest score, " +
                               "the highest score, and the average. ");
            System.out.println("Enter 999 to quit. ");
            //scanner
            Scanner kbd = new Scanner (System.in);
            //variables
            int score = 0;
            int total = 0;
            int count = 0;
            final int maxposs = 100;
            final int minposs = 0;
            int min = maxposs;
            int max = minposs;
            final int sentinel = 999;
            //input
            boolean morePlease = true;
            while (morePlease)
                System.out.print("Enter a score [0..100] (999 to quit): ");
                score = kbd.nextInt();
                if(score == sentinel)
                    break;
                if(score < minposs || score > maxposs)
                    System.out.print(" Enter only 0..100 (999 to quit): ");
                    continue;
                if (score < min)
                    min = score;
                if(score > max)
                    max = score;
                total += score;
                count ++;
            //output
            DecimalFormat formatter = new DecimalFormat ("#0.00");
            if (count >0)                   //genuine scores entered
                System.out.println("The minimum score is " + min + "." );
                System.out.println("The maximum score is " + max + "." );
                float average = (float) total / (float) count;
                System.out.println("The average score is " + average + ".");
    }

  • I transferred PPT files from a windows based pc (microsoft PPT 2003), at first my macbook was able to run all animations in file, after some time it stopped running it, partly because i "switched on" something since this is my first time to use a mac ?

    i transferred PPT files from a windows based laptop to my macbook, at first it was able to run the animations in the file no problem, its my first time to use a mac also bythe way, so i started downloading freebies like the VLC, FLIP4MAC, and other plug-in players, would it be because of this downloads that my mac now cannot seem to run the powerpoint animations any more ?

    I don't think vlc would affect powerpoint.  What were those "other plug-in players" you downloaded? 
    I'm not that familiar with powerpoint so how are those animations played?  Are they windows media player files?  If so then flip4mac might affect them.

Maybe you are looking for