세그멘테이션 오류가 떠요..
제가 보기엔 어디가 문제인지 잘 모르겠는데...
세그멘테이션 오류가 뜨네요..
어디가 잘 못된걸까요? ㅠㅠ
파일 첨부해 놓을게요..
#include
#include
void func_print();
void SJF();
void func_sort();
struct process{
char name[10];
int arrive;
int running;
int run;
int order;
int processNo;
int turnaround;
int waiting;
};
struct process* queue;
int n=0;
int total=0;
int quantum;
struct process tmp;
void func_print(){
int* gantt = (int*)malloc(sizeof(int)*total);
int i=0, turnaround=0, waiting=0;
for (i=0,turnaround=0,waiting=0; i
turnaround+=queue[i].turnaround;
waiting+=queue[i].waiting;
}
printf("\n 1. Gantt Chart\n");
printf (" ");
for (i=0; i
printf ("%d",gantt[i]);
printf("\n 2. Average turnaround time : %d/%d = %f", turnaround,n,(float)turnaround/n);
printf("\n 3. Average waiting time : %d/%d = %f", waiting,n,(float)waiting/n);
printf("\n\n");
}
void SJF(){
//SJF
int* gantt=(int*)malloc(sizeof(int)*total);
int b, i=0, a=0;
while (a
while ( queue[a].running >0 ){
gantt[i]=queue[a].processNo;
queue[a].running--;
i++;
queue[a].turnaround = i-queue[a].arrive;
queue[a].waiting = queue[a].turnaround - queue[a].run;
}
a++;
for (b=a+1; b
if (queue[b].arrive <= i && queue[a].running > queue[b].running){
tmp=queue[b];
queue[b]=queue[a];
queue[a]=tmp;
}
}
func_print();
}
void func_sort(){
int a, b;
for (a=0; a
for (b=a+1; b
if (queue[a].arrive > queue[b].arrive){
tmp=queue[a];
queue[a]=queue[b];
queue[b]=tmp;
}
}
int main(){
int i;
printf(" 몇개의 프로세스를 입력 하시겠습니까? : ");
scanf("%d",&n);
struct process* queue = (struct process*)malloc(sizeof(struct process)*n);
printf(" 프로세스 이름, 도착시간, 실행시간, 우선순위를 순서대로 입력하세요\n");
for (i=0; i
queue[i].processNo=i+1;
printf(" %d 번째 프로세스 정보 입력 : ",queue[i].processNo);
scanf("%s %d %d %d",
queue[i].name, &queue[i].arrive, &queue[i].running,&queue[i].order);
queue[i].run = queue[i].running;
}
printf(" Time Quantum을 입력하세요 : ");
scanf("%d", &quantum);
printf("\n 다음이 프로세스 넘버와 프로세스 이름입니다.\n");
printf(" 간트차트는 프로세스 넘버가 출력됩니다.\n");
for (i=0; i printf(" %d : %s ",queue[i].processNo, queue[i].name);
for (i=0; i total+=queue[i].running;
printf("\n********** Shortest Job First **********\n"); //SJF
func_sort();
SJF();
return 0;
}
첨부 | 파일 크기 |
---|---|
what.zip | 1.09 KB |
여러가지 문제가 있을 것으로 보입니다만, 일단 당장
여러가지 문제가 있을 것으로 보입니다만, 일단 당장 오류가 나는 근본적인 문제는
전역변수로 선언한 queue와 main에서 다시 선언한 queue가 있는데,
값이 할당된 queue는 main에서 선언한 것이고,
sort함수에서 보는 queue는 전역에서 선언된 queue이기때문에,
sort함수에서 할당되지 않은 메모리를 건드리고 있습니다..
전역변수 사용을 줄이고, 함수를 잘 설계하시길..
댓글 달기