linux 고수님들 도와주세염 ㅠㅠ
단순드립
//생각하는 철학자라는 소스인데 (a book on c)
//왜 에러가 나는 걸까요?/* The dining philosopher program. */
#includestdio.h
#includeunistd.h
#includestdlib.h
#includepthread.h /* for calloc() and exit() */
#define N 5 /* number of philosophers */
#define Busy_Eating 1
#define Busy_Thinking 1
#define Left(p) (p) /* chopstick macros */
#define Right(p) (((p) + 1) % N)
typedef int * semaphore;
semaphore chopstick[N]; /* global array */
int fork(void);
semaphore make_semaphore(void);
void philosopher(int me);
void pick_up(int me);
int pipe(int pd[2]);
void put_down(int me);
int read(int fd, void *buf, unsigned len);
void signal(semaphore s);
void sleep(unsigned seconds);
void wait(semaphore s);
int write(int fd, void *buf, unsigned len);
int main(void)
{
int i;
for (i = 0; i N; ++i) { /* put chopsticks on the table */
chopstick[i] = make_semaphore();
signal(chopstick[i]);
}
for (i = 0; i N - 1; ++i) /* create philosophers */
if (fork() == 0)
break;
philosopher(i); /* all executing concurrently */
return 0;
}
/* Acquire chopsticks, input is philosopher number. */
void pick_up(int me)
{
if (me == 0) {
wait(chopstick[Right(me)]);
printf(Philosopher %d picks up right chopstick\n, me);
sleep(1); /* simulate slow picking up to encourage deadlock */
wait(chopstick[Left(me)]);
printf(Philosopher %d picks up left chopstick\n, me);
}
else {
wait(chopstick[Left(me)]);
printf(Philosopher %d picks up left chopstick\n, me);
sleep(1); /* simulate slow picking up to encourage deadlock */
wait(chopstick[Right(me)]);
printf(Philosopher %d picks up right chopstick\n, me);
}
}
/* Relinquish chopsticks, input is the philosopher number. */
void put_down(int me)
{
signal(chopstick[Left(me)]);
signal(chopstick[Right(me)]);
}
/* Philosopher process, input is the philosopher number. */
void philosopher(int me)
{
char *s;
int i = 1;
for ( ; ; ++i) { /* forever */
pick_up(me);
s = i == 1 ? st : i == 2 ? nd : i == 3 ? rd : th;
printf(Philosopher %d eating for the %d%s time\n, me, i, s);
sleep(Busy_Eating);
put_down(me);
printf(Philosopher %d thinking\n, me);
sleep(Busy_Thinking);
}
}
semaphore make_semaphore(void)
{
int *sema;
sema = calloc(2, sizeof(int)); /* permanent storage */
pipe(sema);
return sema;
}
void wait(semaphore s)
{
int junk;
if (read(s[0], &junk, 1) = 0) {
printf(ERROR: wait() failed, check semaphore creation.\n);
exit(1);
}
}
void signal(semaphore s)
{
if (write(s[1], x, 1) = 0) {
printf(ERROR: write() failed, check semaphore creation.\n);
exit(1);
}
}
-
조히
제 생각엔요
void sleep(unsigned seconds);
int write(int fd, void *buf, unsigned len);
이 두개를 선언할대 문제가 생긴것 같은데요
혹시 헤더파일에 이미 선언되서 그런거 아니에요?
번호 | 제 목 | 글쓴이 | 날짜 |
---|---|---|---|
2676182 | 숫자 순서대로 배열하는법 | 권뉴 | 2024-11-24 |
2676152 | 기본적인거 하나 질문드립니다. | 개미 | 2024-11-24 |
2676124 | 함수선언관련 질문이에요~...털썩..수정완료 (2) | 가지 | 2024-11-24 |
2676092 | C언어 책 (2) | 아서 | 2024-11-24 |
2676065 | 웹사이트 또는 메신저 등에서 원하는 텍스트를 검사하는방법?? (1) | 모든 | 2024-11-23 |
2676033 | 배열 기초연습중 발생하는 에러 ㅠㅜ... | Creative | 2024-11-23 |
2676005 | keybd_event 게임 제어 | 영글 | 2024-11-23 |
2675900 | 진짜기본적인질문 | 글길 | 2024-11-22 |
2675845 | 수정좀해주세요ㅠㅠㅠ | 해골 | 2024-11-21 |
2675797 | 병합 정렬 소스 코드 질문입니다. (2) | 도래솔 | 2024-11-21 |
2675771 | 큐의 활용이 정확히 어떻게 되죠?? | 해긴 | 2024-11-21 |
2675745 | 도서관리 프로그램 질문이요 | 도리도리 | 2024-11-20 |
2675717 | 2진수로 변환하는것! (3) | 동생몬 | 2024-11-20 |
2675599 | for문 짝수 출력하는 법 (5) | 널위해 | 2024-11-19 |
2675575 | Linux 게시판이 없어서.. | 첫삥 | 2024-11-19 |
2675545 | 구조체 이용할 때 함수에 자료 넘겨주는 것은 어떻게 해야 하나요? | 아연 | 2024-11-19 |
2675518 | 사각형 가로로 어떻게 반복해서 만드는지좀.. 내용 | 신당 | 2024-11-18 |
2675491 | !느낌표를 입력하는것은 어떻게합니까~~?ㅠㅠ (5) | 사지타리우스 | 2024-11-18 |
2675411 | 파일입출력으로 받아온 파일의 중복문자열을 제거한 뒤 파일출력 | 앨버트 | 2024-11-17 |
2675385 | 링크드리스트 주소록 질문드립니다. (1) | 겨루 | 2024-11-17 |