In UNIX, quali sono i tipi di processo Ss, Sl e Ssl che vedo con ps aux?


32

Quando eseguo un ps auxcomando, vedo alcuni processi elencati come Ss, Ssle Sl.

Cosa significano questi?

root     24653  0.0  0.0   2256     8 ?        Ss   Apr12   0:00 /bin/bash -c /usr/bin/python /var/python/report_watchman.py 
root     24654  0.0  0.0  74412    88 ?        Sl   Apr12   0:01 /usr/bin/python /var/python/report_watchman.py
root     21976  0.0  0.0   2256     8 ?        Ss   Apr14   0:00 /bin/bash -c /usr/bin/python /var/python/report_watchman.py 
root     21977  0.0  0.0  73628    88 ?        Sl   Apr14   0:01 /usr/bin/python /var/python/report_watchman.py

Risposte:


43

Dalla manpage ps :

   S    Interruptible sleep (waiting for an event to complete)

  For BSD formats and when the stat keyword is used, additional
  characters may be displayed:
  s    is a session leader
  l    is multi-threaded (using CLONE_THREAD, like NPTL pthreads do)

11
In caso di dubbio man,!
squircle
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.