Qt创建者进程ID更改

时间:2015-07-31 06:20:39

标签: linux bash

Qt已关闭。但是这个过程仍在运行,没有CPU使用率。进程ID也在不断变化。它为什么运行和更改pids 2? 另外我注意到如果我在一段时间后运行ps命令,则进程id会移动2的倍数。

ps aux | grep qt 1000 9883 0.0 0.0 8104 936 pts / 0 S + 11:02 0:00 grep --color = auto qt

ps aux | grep qt 1000 9885 0.0 0.0 8104 940 pts / 0 S + 11:02 0:00 grep --color = auto qt

ps aux | grep qt 1000 9888 0.0 0.0 8104 940 pts / 0 S + 11:02 0:00 grep --color = auto qt

ps aux | grep qt 1000 9912 0.0 0.0 8104 940 pts / 0 S + 11:03 0:00 grep --color = auto qt

另外我如何杀死这样的过程?

谢谢:)

1 个答案:

答案 0 :(得分:2)

您正在查看grep条目,Qt Creator甚至没有运行。你得到的结果与你知道甚至不存在的东西相同:

[root@111 camm]# ps aux | grep Hello
root      3106  0.0  0.0   4024   708 pts/0    S+   07:52   0:00 grep Hello
[root@111 camm]# ps aux | grep Hello
root      3108  0.0  0.0   4024   712 pts/0    S+   07:52   0:00 grep Hello
[root@111 camm]# ps aux | grep Hello
root      3113  0.0  0.0   4024   712 pts/0    S+   07:52   0:00 grep Hello
[root@11 camm]# ps aux | grep Hello
root      3117  0.0  0.0   4024   708 pts/0    S+   07:52   0:00 grep Hello