浏览代码

test mytop

master
10195501441 3 年前
父节点
当前提交
b0ed4d16f7
共有 1 个文件被更改,包括 8 次插入10 次删除
  1. +8
    -10
      yeeshell.c

+ 8
- 10
yeeshell.c 查看文件

@ -404,20 +404,18 @@ int builtin_mytop()
if ((pid = fork()) < 0)
{
printf("fork error\n");
return;
return -1;
}
if (pid == 0)
getkinfo();
mytop_memory();
get_procs();
if (prev_proc == NULL)
{
getkinfo();
mytop_memory();
get_procs();
if (prev_proc == NULL)
{
get_procs();
}
print_procs(prev_proc, proc, cputimemode);
exit(0);
}
print_procs(prev_proc, proc, cputimemode);
exit(0);
}
void mytop_memory()

正在加载...
取消
保存