[완료]우분투에서 컴파일 했는데 segmentation fault가 발생합니다;

mtg1의 이미지

내용 그대로 segmentation fault라고 뜨는데요;

gcc로 컴파일 할 때는 아무 에러도 출력하지 않았는데 실행하니까

저 메세지 뜨고 실행이 안되네요;;

어디서 잘못 한 걸까요;

행렬 곱 계산 3가지 입니다만..;

#include <stdio.h>
#include <time.h>
#include <string.h>
 
int main(){
	FILE *a, *b, *c1, *c2, *c3;
	int aa[1000][1000]={0}, bb[1000][1000]={0}, br[1000][1000]={0};
	int cc1[1000][1000]={0}, cc2[1000][1000]={0},cc3[1000][1000]={0};
	int i=0, j=0, k;
	double ca1=0, ca2=0, ca3=0;
	double cts1, ctf1, cts2, ctf2, cts3, ctf3;
 
	a=fopen("array1.txt","r");
	b=fopen("array2.txt","r");
 
	while(!feof(a)){
		fscanf(a, "%d", &aa[i][j]);
		j++;
		if(j==1000){
			i++;
			j=0;
		}
		if(i==1000)
			break;
	}
 
	i=0;
	j=0;
 
	while(!feof(b)){
		fscanf(b, "%d", &bb[i][j]);
		j++;
		if(j==1000){
			i++;
			j=0;
		}
		if(i==1000)
			break;
	}
 
	cts1=clock();
	c1=fopen("array3_1.txt","a+");
	for(i=0;i<1000;i++){
		for(j=0;j<1000;j++){
			for(k=0;k<1000;k++) cc1[i][j]+=aa[i][k]*bb[k][j];
			fprintf(c1, "%d ", cc1[i][j]);
			ca1+=cc1[i][j];
			if(j==999)
				fprintf(c1, "\n");
		}
	}
	ctf1=clock();
	fprintf(c1,"\n average : %.2f\n", ca1/1000000);
	fprintf(c1,"time : %.2f", ctf1-cts1);
	fclose(c1);
 
	cts2=clock();
	c2=fopen("array3_2.txt","a+");
	for(i=0;i<500;i++){
		for(j=0;j<1000;j++){
			for(k=0;k<1000;k++) cc2[i][j]+=aa[i][k]*bb[k][j];
			fprintf(c2, "%d ", cc2[i][j]);
			ca2+=cc2[i][j];
			if(j==999)
				fprintf(c2, "\n");
		}
	}
	for(i=0;i<500;i++){
		for(j=0;j<1000;j++){
			for(k=0;k<1000;k++) cc2[i+500][j]+=aa[i+500][k]*bb[k+500][j];
			fprintf(c2, "%d ", cc2[i+500][j]);
			ca2+=cc2[i+500][j];
			if(j==999)
				fprintf(c2, "\n");
		}
	}
	ctf2=clock();
	fprintf(c2,"\n average : %.2f\n", ca2/1000000);
	fprintf(c2,"time : %.2f", ctf2-cts2);
	fclose(c2);
 
	for(i=0;i<1000;i++){
		for(j=0;j<1000;j++){
			br[i][j]=bb[j][i];
		}
	}
 
	cts3=clock();
	c3=fopen("array3_3.txt","a+");
	for(i=0;i<1000;i++){
		for(j=0;j<1000;j++){
			for(k=0;k<1000;k++) cc3[i][j]+=aa[i][k]*br[j][k];
			fprintf(c3, "%d ", cc3[i][j]);
			ca3+=cc3[i][j];
			if(j==999)
				fprintf(c3, "\n");
		}
	}
	ctf3=clock();
	fprintf(c3,"\n average : %.2f\n", ca3/1000000);
	fprintf(c3,"time : %.2f", ctf3-cts3);
	fclose(c3);
}
madman93의 이미지

---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------

---------------------------------------------
git init
git add .
git commit -am "project init"
---------------------------------------------

mtg1의 이미지

그런데;; fopen에서도 세그멘테이션 폴트가 뜨네요...ㄷㄷ;
행렬 초기화한 부분을 지웠더니 그 부분은 지나가는데, 그 뒤에
a=fopen("array1.txt","r");
여기서도 세그멘테이션 폴트가 떠버리네요..;
이건 어떻게 된 걸까요...ㄷㄷ;

swirlpotato의 이미지

스택을 6메가 바이트나 이용 하셨는데 공간이 부족해서 그럴 것 같습니다.
한번 엄청난 배열 덩어리를 전역으로 해보시던지 동적 할당 해보세요
배열을 초기화 할 때 스택오버플로우가 발생해서 세그먼테이션 폴트 난 것 같습니다.

김동수의 이미지

리눅스 커널 스택 크기 제한을 넘기셨군요.

분투 최신버전에서는 스텍 크기 제한이 10*1024*1024 이고, 구버전에서는 8*1024*1024 인걸로 알고있습니다.
물론 버전마다 차이가 있긴 하지만, 대강 저정도이며, 스택을 배열이 독점해서 쓰는건 아니기 때문에 스택 크기 제한을 넘어가서 스택오버플로우 나면서 와장창 깨먹으면서 세그먼테이션 폴트가 떨어진거죠.

해결책은 간단합니다.

고정크기 배열을 선언하지 말고, 포인터로 선언 후, malloc 으로 필요한 크기로 할당해서 사용하세요. 그러면 스택이 아니라 힙에 할당되기 때문에 별 문제 없을 것입니다.

-------------------------------------
김동수 - Prototype for Evolution

김동수 - Prototype for Evolution

rubenz의 이미지

static으로 선언 하시면... 아마도 괘안을듯 합니다.

neocoin의 이미지

Stack overflow 네요.

fopen 이 문제가 아니라,

int aa[1000][1000]={0}, bb[1000][1000]={0}, br[1000][1000]={0};
int cc1[1000][1000]={0}, cc2[1000][1000]={0},cc3[1000][1000]={0}; 

문제 입니다.

int가 32 bit 라고 가정할때 위의 배열이

1000 * 1000 * 6 * 4(byte) / 1024(for KB) / 1024(for MB)

대략 main 함수를 위해서 22.8MB의 이상의 stack size를 필요로 합니다.

ulimit -s 

해보시면 8MB 가 보통 기본 사이즈로 잡혀 있을 겁니다. (사용법 man bash 에서 찾으세요.)

이걸 넘어가니 그 뒤에 어떠한 코드도 실행이 되지 않습니다.
동적 할당으로 구현하시던지 그냥 간단히..

ulimit -s unlimited

해서 실행해 보세요.

mtg1의 이미지

...그런 문제였군요;;

설명해주신 분들 모두 감사합니다.^-^

좋은하루되세요

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.