PROCESS STATE CODES
       Here are the different values that the s, stat and state output
       specifiers (header "STAT" or "S") will display to describe the state of
       a process:
       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.

For BSD formats and when the stat keyword is used, additional
       characters may be displayed:
       <    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. linux下共享库的注意点之-fpic
  2. ElasticSearch返回不同的type的序列化
  3. logstash redis kafka传输 haproxy日志
  4. 编译Ansj之Solr插件
  5. SPOJ Pouring Water
  6. Nginx的fastcgi_cache
  7. linux下使用fscanf实现scanf
  8. 原生js下拉刷新
  9. 顺序容器的insert使用方法
  10. MEF框架在Silverlight中应用(15)
  11. 芝麻HTTP: Python爬虫入门之Urllib库的高级用法
  12. 局部敏感哈希(LSH)之simhash和minhash
  13. 原创《如何用vue来轻松的驾驭 html5 webapp的页面体验》
  14. SQL Server datetime类型转换超出范围的报错
  15. Python基础之文件和目录操作
  16. Java六大必须理解的问题
  17. Linux/Unix 常用参数使用说明
  18. 第三周(JAVA编写的 wordcount)
  19. Android中五种常用的menu
  20. FFmpeg(5)-AVStream和AVCodecParameters部分参数分析

热门文章

  1. 获取jQuery版本号
  2. MongoDB 在 Mac OSX 平台安装
  3. Linux Samba安装与使用
  4. 符号三角形_hdu_2510(深搜).java
  5. 【UNIX网络编程】FIFO
  6. js 多级联动(省、市、区)
  7. 【Linux】tail命令
  8. 5分钟教你配置命令行界面的163邮箱client
  9. 最大似然估计(MLE)与最大后验概率(MAP)
  10. 10分钟学会搭建Android开发环境 Eclipse: The import android.support cannot be resolved