안녕하세요 파일 쓰기중에 문제가 생겨서 질문 드립니다

svsummon의 이미지

안녕하세요 항 상여기서 도움을 받는 학생입니다 (__)

추석 댓바람부터 질문이네요 ㅠㅠ(망할 과제들 ㅠㅠ)

다름이 아니고..

과제가 부모 하나에 자식 4개를 만들어서 각각 파일을 만들고 그 파일안에

부모의 pid와 자식의 pid를 쓰는 건데요..

지금 각각 프로세스를 돌려서 부모의 pid로 폴더를 만들고 각각 4개의 자식들로 파일을 생성하는것 까지는 성공했거든요..

문제는 파일 쓰기에서 걸리는데.. 일단 한글이 안들어가지고 =_=;;

제가 의도한거 보다 많은 양의 데이터가 파일로 들어갑니다.. 심지어 제가 의도하지 않은 곳에서 줄도 바뀌는데..

무슨 문제인지 잘 모르겠습니다 ㅠㅠ;;

고수분들의 도움 부탁드려요..

제가 잘못 한 곳이 어느부분인지 찝어 주시면 감사하겠습니다 'ㅅ')/

  1 #include <stdio.h>
  2 #include <stdlib.h>
  3 #include <unistd.h>
  4 #include <sys/types.h>
  5 #include <string.h>
  6 #include <fcntl.h>
  7 
  8 #define PERM 0644
  9 main()
 10 {
 11     int pid[4];
 12     int i;
 13     char tmp[6];
 14 
 15     sprintf(tmp, "./%d", getpid());
 16 
 17     char buf[255];
 18 
 19     mkdir(tmp, 0755);
 20     chdir(tmp);
 21 
 22     int ppid;
 23     ppid = getppid();
 24 
 25 //  for(i=0; i<4; i++)
 26 //      pid[i] = fork();
 27 
 28     for(i=0; i<4; i++)
 29     {
 30         if((pid[i] = fork()) <= 0)
 31         {
 32             int file;
 33 
 34     //      printf("%d\n", pid[i]);
 35         
 36             sprintf(buf, "%d", getpid());
 37     //      printf("%s\n", buf);
 38 
 39             if((file  = open(buf, O_WRONLY | O_CREAT | O_TRUNC, PERM)) == -1    ) 
 40                     printf("file open error\n");
 41             else
 42             {
 43                 sprintf(buf, "<P0의 PID> : %d\n", getppid());
 44                 write(file, buf, sizeof(buf)); 
 45                   
 46                 sprintf(buf, "<P%d의 PID> : %d\n", i, getpid());
 47                 write(file, buf, sizeof(buf));
 48              
 49                 close(file);  
 50 
 51                 exit(1);
 52             } 
 53         }
 54     } 
"forkReport.c" 60L, 860C                                      44,5-17       84%
antaran의 이미지

write(file, buf, sizeof(buf));

위부분이 문제입니다. 위 문장을 조금 바꾸면

write(file, buf, 255);

입니다. 뭐가 문제인지 아시겠지요.

아마 원하셨던건 write(file, buf, strlen(buf)) ; 일 겁니다.

그럼 ...

댓글 달기

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
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.