About 52 results
Open links in new tab
  1. linux - What is an uninterruptible process? - Stack Overflow

    An uninterruptible process is a process which happens to be in a system call (kernel function) that cannot be interrupted by a signal. To understand what that means, you need to understand the …

  2. Why there is a state called `TASK_UNINTERRUPTIBLE` in Linux kernel?

    Dec 10, 2024 · As you could read from that answer, setting the current process state to TASK_UNINTERRUPTIBLE is needed for make schedule() call, performed by that thread, to put the …

  3. How to stop 'uninterruptible' process on Linux? - Stack Overflow

    I have a VirtualBox process hanging around which I tried to kill (KILL/ABORT) but without success. The parent pid is 1 (init). top shows the process as D which is documented as "uninterruptible sl...

  4. how to find out what it is waiting for - Stack Overflow

    Mar 14, 2016 · When looking at the process with "ps ax" the stat column is "Dl" which means "uninterruptible sleep (usually IO)". Is it possible to find out more details on what the process is …

  5. Linux Process States - Stack Overflow

    Sep 25, 2009 · A process performing I/O will be put in D state (uninterruptable sleep), which frees the CPU until there is a hardware interrupt which tells the CPU to return to executing the program. See …

  6. How can I put process into "uninterruptible sleep"?

    I'm noticed that process that dumping a core is in uninterruptible sleep, so it can't be killed with SIGKILL, but when I'm trying to emulate this behavior using pipe commands that receives coredump I can …

  7. Uninterruptable process in Windows (or Linux)? - Stack Overflow

    Sep 15, 2012 · Is there any way to make a program that cannot be interrupted (an uninterrupted program)? By that, I mean a process that can't be terminated by any signal, kill command, or any …

  8. understand perfetto Uninterruptible Sleep - Stack Overflow

    Dec 10, 2023 · Uninterruptible Sleep usually caused by I/O, sometime it's caused by I/O trashing because of low memory. Only by looking your perfetto trace can figure it out.

  9. Does read/write blocked system call put the process in TASK ...

    May 15, 2019 · The Uninterruptible state is mostly used by device drivers waiting for disk or network I/O. When the process is sleeping uninterruptibly, signals accumulated during the sleep are noticed when …

  10. Why doing I/O in Linux is uninterruptible? - Stack Overflow

    Jan 27, 2013 · In short, making I/O uninterruptible is for the purpose of making the I/O task finish ASAP, without being interfered by signals. Some related knowledge that I gained from the book: The word …