소스 검색

test mytop

master
10195501441 3 년 전
부모
커밋
4da070790e
1개의 변경된 파일8개의 추가작업 그리고 11개의 파일을 삭제
  1. +8
    -11
      yeeshell.c

+ 8
- 11
yeeshell.c 파일 보기

@ -399,18 +399,15 @@ int builtin_history(char **args)
int builtin_mytop()
{
pid_t pid;
if (pid == 0)
{
int cputimemode = 1;
getkinfo();
mytop_memory();
int cputimemode = 1;
mytop_memory();
getkinfo();
get_procs();
if (prev_proc == NULL)
get_procs();
if (prev_proc == NULL)
get_procs();
print_procs(prev_proc, proc, cputimemode);
exit(0);
}
print_procs(prev_proc, proc, cputimemode);
return 1;
}

불러오는 중...
취소
저장