Quellcode durchsuchen

test mytop

master
10195501441 vor 3 Jahren
Ursprung
Commit
bf8b8a79ec
1 geänderte Dateien mit 8 neuen und 13 gelöschten Zeilen
  1. +8
    -13
      yeeshell.c

+ 8
- 13
yeeshell.c Datei anzeigen

@ -400,22 +400,17 @@ int builtin_history(char **args)
int builtin_mytop()
{
pid_t pid;
int cputimemode = 1;
if ((pid = fork()) < 0)
{
printf("fork error\n");
return -1;
}
getkinfo();
mytop_memory();
get_procs();
if (prev_proc == NULL)
if (pid == 0)
{
int cputimemode = 1;
getkinfo();
mytop_memory();
get_procs();
if (prev_proc == NULL)
get_procs();
print_procs(prev_proc, proc, cputimemode);
exit(1);
}
print_procs(prev_proc, proc, cputimemode);
exit(0);
}
void mytop_memory()

Laden…
Abbrechen
Speichern