如何在Linux中显示进程状态(阻塞,非阻塞)

时间:2015-01-09 21:04:07

标签: python linux process blocking nonblocking

有没有办法查询Linux进程表中的进程状态,以便能够在执行查询时演示进程是运行还是阻塞?我的目标是从流程或程序的“外部”执行此操作,因为我希望在操作系统流程方面理解这一点,但欢迎任何想法!

这是python代码阻止进程:

import subprocess
proc = subprocess.call('ls -lRa /', shell=True)

以下是非阻止进程的python代码:

import subprocess
proc = subprocess.Popen('ls -lRa /', shell=True)

以下是'ps -ef'的输出,显示了进程ID:

UID        PID  PPID  C STIME TTY          TIME CMD
user1    14308  4145  0 15:30 pts/2    00:00:00 python call_b.py
user1    14309 14308  0 15:30 pts/2    00:00:00 /bin/sh -c ls -lRa /
user1    14310 14309 15 15:30 pts/2    00:00:30 ls -lRa /
root     14313     2  0 15:31 ?        00:00:00 [kworker/2:0]
user1    14318  2476  0 15:32 pts/4    00:00:00 -bash
user1    14442     1  0 15:33 pts/4    00:00:00 /bin/sh -c ls -lRa /
user1    14443 14442  6 15:33 pts/4    00:00:01 ls -lRa /

当这些'ls'命令正在处理时,我想显示哪些进程正在阻塞以及其他进程处于哪种状态。这个问题旨在成为一种工具,用于了解状态,因为我学习了多处理python,所以虽然我相信PID 14309是阻塞的,PID 14442是非阻塞的,虽然我可能有错。这就是为什么能够看到或测试显示的所有PID对我有帮助的原因。

感谢尊敬的用户'ubuntu'以及他们对此的回应: Blocking and Non Blocking subprocess calls 用于提供入门代码。

本案例中的操作系统是Ubuntu,但任何debian或OS评论都会有所帮助。

4 个答案:

答案 0 :(得分:2)

试试ps -weo pid,stat,wchan:32,args。您将获得如下输出:

28325 S<l  poll_schedule_timeout            /usr/bin/pulseaudio --start --log-target=syslog
28328 Sl   poll_schedule_timeout            /usr/bin/krunner
28344 Sl   poll_schedule_timeout            /usr/bin/kmix -session 014f10adfdf000141320876500000291010026_1419380700_54458

这是进程当前被阻止的pid,状态标志(见下文)和命令行。标志是:

       D    uninterruptible sleep (usually IO)
       R    running or runnable (on run queue)
       S    interruptible sleep (waiting for an event to complete)
       T    stopped, either by a job control signal or because it is being traced
       W    paging (not valid since the 2.6.xx kernel)
       X    dead (should never be seen)
       Z    defunct ("zombie") process, terminated but not reaped by its parent

       <    high-priority (not nice to other users)
       N    low-priority (nice to other users)
       L    has pages locked into memory (for real-time and custom IO)
       s    is a session leader
       l    is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)
       +    is in the foreground process group

答案 1 :(得分:0)

这可能不是您正在寻找的,但您可以尝试ps aux,它将为您提供STAT列。这不会明确表示阻塞或非阻塞,但某些状态将为您提供有关进程状态当前状态的更多信息。例如无论是正在运行还是处于僵尸状态(即将被收回)。

答案 2 :(得分:0)

在短程序中阻塞进程的最有说服力的关键是它在进程表中是否存在:

这清楚地显示了我正在寻求的东西,特别强调的是“等待”状态以及缺少程序的存在,这种程序在子程序生效时已经终止

blocking:
  PID STAT WCHAN                            COMMAND
18714 S+   wait                             python call_b.py       <=see blocking process
18715 S+   wait                             /bin/sh -c ls -lRa /
18716 D+   sleep_on_buffer                  ls -lRa /

注意命令'python popen_nb.py'缺少PID,因为它已经完成了。然而,我打开的两个终端窗口都是从我的驱动器上的ls喷出的......

non-blocking:
  PID STAT WCHAN                            COMMAND
18869 S    wait                             /bin/sh -c ls -lRa /
18870 D    vfs_readdir                      ls -lRa /

答案 3 :(得分:0)

使用ps -elf会将流程状态输出给您。 在Centos 6.5中,第二列是流程状态:

F S UID        PID  PPID  C PRI  NI ADDR SZ WCHAN  STIME TTY          TIME CMD
4 S root         1     0  0  80   0 -  4808 poll_s 09:50 ?        00:00:01 /sbin/init
1 S root         2     0  0  80   0 -     0 kthrea 09:50 ?        00:00:00 [kthreadd]
1 S root         3     2  0 -40   - -     0 migrat 09:50 ?        00:00:00 [migration/0]
1 S root         4     2  0  80   0 -     0 ksofti 09:50 ?        00:00:00 [ksoftirqd/0]
1 S root         5     2  0 -40   - -     0 cpu_st 09:50 ?        00:00:00 [migration/0]