Linux下 c/c++ 如何获取当前的进程信息? 30
我想知道当前名为xx比如(firefox)的进程的数目?求c/c++的代码,qt的也行最好不要直接用命令的方式,因为不好将结果存到变量里...
我想知道当前名为xx比如(firefox)的进程的数目?
求c/c++的代码 ,qt的也行
最好不要直接用命令的方式,因为不好将结果存到变量里 展开
求c/c++的代码 ,qt的也行
最好不要直接用命令的方式,因为不好将结果存到变量里 展开
1个回答
展开全部
用命令的方式也是很方便将结果存到变量里呀,用一个复制或者重定向就行了。
c代码:
#include <pthread.h>
#include <stdio.h>
void* print_xs (void* unused)
{
while (1)
fputc (‘x’, stderr);
return NULL;
}
/* The main program. */
int main ()
{
int i=0;
while(1){
pthread_t thread_id;
if( NULL != pthread_create (&thread_id, NULL, &print_xs, NULL)){
break;
}
i++;
}
printf("创建线程个数:%d\n",i);
return 0;
}
c代码:
#include <pthread.h>
#include <stdio.h>
void* print_xs (void* unused)
{
while (1)
fputc (‘x’, stderr);
return NULL;
}
/* The main program. */
int main ()
{
int i=0;
while(1){
pthread_t thread_id;
if( NULL != pthread_create (&thread_id, NULL, &print_xs, NULL)){
break;
}
i++;
}
printf("创建线程个数:%d\n",i);
return 0;
}
追问
谢谢哦,
不过我说的是process 不是thread
,就是任务管理器可以看见的
追答
没太注意,sorry
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询