陈越 3 년 전
부모
커밋
195bd57a74
3개의 변경된 파일6개의 추가작업 그리고 3개의 파일을 삭제
  1. +1
    -1
      fun_2.c
  2. BIN
      main
  3. +5
    -2
      mytop.c

+ 1
- 1
fun_2.c 파일 보기

@ -8,7 +8,7 @@ int pipe(int *fd);
int fork();
int close(int arg);
int dup(int fd);
int execvp(const char* command, char* argv[]);
int execvp(const char *, char * const *);
int wait(int arg);
static int num = 0;
static char storage[MAXLINE][MAXLINE];

BIN
main 파일 보기


+ 5
- 2
mytop.c 파일 보기

@ -1,4 +1,4 @@
/*
#include <stdio.h>
#include <unistd.h>
#include <pwd.h>
@ -116,7 +116,7 @@ void parse_file(pid_t pid)
p->p_endpoint = endpt;
p->p_pid = pid;
//
if (fscanf(fp, " %255s %c %d %d %lu %*u %lu %lu",
if (fscanf(fp, " %255s %c %d %d %ld %*u %lu %lu",
name, &state, &p->p_blocked, &p->p_priority,
&p->p_user_time, &cycles_hi, &cycles_lo) != 7) {
@ -335,3 +335,6 @@ void mytop()
print_procs(prev_proc,proc,1);
return;
}
*/
void mytop()
{}

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