philosophers - KimTaebin-ai/study_posts GitHub Wiki
๋ฉํฐ ํ์คํน, ๋ฉํฐ ์ฐ๋ ๋ฉ
๋๊ธฐํ
-
๋ฎคํ ์ค(๋ฎคํ ์ค ๋ฝ)
-
์ธ๋งํฌ์ด
-
์์ฌํ๋ ์ฒ ํ์
-
๋ฐ์ดํฐ ๋ ์ด์ค
int sum;
void *run1(void *param)
{
int i;
for (i = 0; i < 10000; i++)
sum++;
pthread_exit(0);
}
void *run2(void *param)
{
int i;
for (i = 0; i < 10000; i++)
sum++;
pthread_exit(0);
}
int main()
{
pthread_t tid1, tid2;
pthread_create(&tid1, NULL, run1, NULL);
pthread_create(&tid2, NULL, run2, NULL);
pthread_join(tid1, NULL);
pthread_join(tid2, NULL);
printf("%d\n", sum);
}
// register1 = sum;
// register1 = register1 + 1;
// sum = register1;
#include <pthread.h>
#include <stdio.h>
int sum;
pthread_mutex_t mutex;
void *run1(void *param)
{
int i;
for (i = 0; i < 10000; i++) {
pthread_mutex_lock(&mutex);
sum++;
pthread_mutex_unlock(&mutex);
}
pthread_exit(0);
}
void *run2(void *param)
{
int i;
for (i = 0; i < 10000; i++) {
pthread_mutex_lock(&mutex);
sum++;
pthread_mutex_unlock(&mutex);
}
pthread_exit(0);
}
int main()
{
pthread_t tid1, tid2;
pthread_mutex_init(&mutex, NULL);
pthread_create(&tid1, NULL, run1, NULL);
pthread_create(&tid2, NULL, run2, NULL);
pthread_join(tid1, NULL);
pthread_join(tid2, NULL);
printf("%d\n", sum);
pthread_mutex_destroy(&mutex);
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <pthread.h>
#define true 1
#define NUM_PHILS 5 // ์ฒ ํ์๋ค์ ์ธ์์
// THINKING : ์๊ฐ์ค์ธ ์ํ
// HUNGRY : ๋ฐฐ๊ณ ํ ์ํ
// EATING : ๋ฐฅ์ ๋จน๋ ์ํ
enum
{
THINKING,
HUNGRY,
EATING
} state[NUM_PHILS];
pthread_mutex_t mutex_lock;
pthread_cond_t cond_vars[NUM_PHILS];
void init();
int leftOf(int i);
int rightOf(int i);
void *philosopher(void *param);
void think(int id);
void eat(int id);
void pickup(int id);
void putdown(int id);
void test(int i);
int main()
{
pthread_t tid;
init();
for (int i = 0; i < NUM_PHILS; i++)
{
pthread_create(&tid, NULL, philosopher, (void *)&i);
}
for (int i = 0; i < NUM_PHILS; i++)
{
pthread_join(tid, NULL);
}
return 0;
}
void init()
{
for (int i = 0; i < NUM_PHILS; i++)
{
state[i] = THINKING;
pthread_cond_init(&cond_vars[i], NULL);
}
pthread_mutex_init(&mutex_lock, NULL);
srand(time(0));
}
int leftOf(int i)
{
return (i + NUM_PHILS - 1) % NUM_PHILS;
}
int rightOf(int i)
{
return (i + 1) % NUM_PHILS;
}
void *philosopher(void *param)
{
int id = *((int *)param);
while (true)
{
think(id);
pickup(id);
eat(id);
putdown(id);
}
}
void think(int id)
{
printf("%d: Now, I'm thinking...\n", id);
usleep((1 + rand() % 50) * 10000);
}
void eat(int id)
{
printf("%d: Now, I'm eating...\n", id);
usleep((1 + rand() % 50) * 10000);
}
void pickup(int id)
{
pthread_mutex_lock(&mutex_lock);
state[id] = HUNGRY;
test(id);
while (state[id] != EATING)
{
pthread_cond_wait(&cond_vars[id], &mutex_lock);
}
pthread_mutex_unlock(&mutex_lock);
}
void putdown(int id)
{
pthread_mutex_lock(&mutex_lock);
state[id] = THINKING;
test(leftOf(id));
test(rightOf(id));
pthread_mutex_unlock(&mutex_lock);
}
void test(int i)
{
// ๋ง์ฝ ์ฒ ํ์ i๊ฐ ๋ฐฐ๊ณ ํ ์ํ์ด๊ณ ์ด์ํ๋ ์ ๊ฐ๋ฝ์ด eating ์ํ๊ฐ ์๋๋ผ๋ฉด
// ๋ฐฅ์ ๋จน์ต๋๋ค.
if (state[i] == HUNGRY &&
state[leftOf(i)] != EATING &&
state[rightOf(i)] != EATING)
{
state[i] = EATING;
pthread_cond_signal(&cond_vars[i]);
}
}
arguments
์ฒ ํ์ ์, ์๋ช , ๋ฐฅ์ ๋จน๋๋ฐ ๊ฑธ๋ฆฌ๋ ์๊ฐ, ์ ์๋ ์๊ฐ, ๊ฐ ์ฒ ํ์๊ฐ ์ต์ํ ๋ฐฅ์ ๋จน์ด์ผ ํ๋ ํ์
int number_of_philosophers;
/*
์ฒ ํ์์ ์ :
์ฒ ํ์์ ์์ ํฌํฌ์ ์์
๋๋ค.
*/
int time_to_die;
/*
์ฒ ํ์์ ์๋ช
(๋ฐ๋ฆฌ์ด ๋จ์) :
์ฒ ํ์๊ฐ ๋ง์ง๋ง์ผ๋ก ๋ฐฅ์ ๋จน๊ธฐ ์์ํ ์์ ์ผ๋ก๋ถํฐ
time_to_die ์๊ฐ๋งํผ์ด ์ง๋๊ฑฐ๋,
ํ๋ก๊ทธ๋จ ์์ ํ time_to_die ์๊ฐ๋งํผ์ด ์ง๋๋๋ก
์์ฌ๋ฅผ ์์ํ์ง ์์ผ๋ฉด ํด๋น ์ฒ ํ์๋ ์ฌ๋งํฉ๋๋ค.
*/
int time_to_eat;
/*
๋ฐฅ์ ๋จน๋๋ฐ ๊ฑธ๋ฆฌ๋ ์๊ฐ(๋ฐ๋ฆฌ์ด ๋จ์) :
์ฒ ํ์๊ฐ ๋ฐฅ์ ๋จน๋๋ฐ ๊ฑธ๋ฆฌ๋ ์๊ฐ์
๋๋ค.
ํด๋น ์๊ฐ๋์ ์ฒ ํ์๋ ๋ ๊ฐ์ ํฌํฌ๋ฅผ ์ก๊ณ ์์ด์ผ ํฉ๋๋ค.
*/
int time_to_sleep;
/*
์ ์๋ ์๊ฐ(๋ฐ๋ฆฌ์ด ๋จ์) :
์ ์ ์๋ ๋ฐ ์๋ชจ๋๋ ์๊ฐ ์
๋๋ค.
*/
int number_of_times_each_philosopher_must_eat;
/*
๊ฐ ์ฒ ํ์๊ฐ ์ต์ํ ๋ฐฅ์ ๋จน์ด์ผ ํ๋ ํ์(์ ํ์ ์ธ์):
๋ชจ๋ ์ฒ ํ์๊ฐ number_of_times_each_philosopher_must_eat ๋ฒ ์ด์
๋ฐฅ์ ๋จน์ผ๋ฉด ์๋ฎฌ๋ ์ด์
์ด ์ข
๋ฃ๋ฉ๋๋ค.
์ง์ ๋์ง ์์ ๊ฒฝ์ฐ, ์ฒ ํ์๊ฐ ์ฃฝ์ ๋ ์๋ฎฌ๋ ์ด์
์ด ์ข
๋ฃ๋ฉ๋๋ค.
*/
์ถ๋ ฅ๊ฐ
timestamp_in_ms X has taken a fork
timestamp_in_ms X is eating
timestamp_in_ms X is sleeping
timestamp_in_ms X is thinking
timestamp_in_ms X died
๊ฐ๋ฐ ์์
- 1 argv
- 2 invalid check
- 3 table init
- 4 philosopher init
- 5 eat func
- 6 sleep func
- 7 think func
- 8-1 argc๊ฐ 5๊ฐ์ผ ๋ ์ฃฝ๋ ์ฒ ํ์ ์ die
- 8-2 argc๊ฐ 6๊ฐ์ผ ๋ must ์ฒ๋ฆฌ
- 9 pthread join ๊ธฐ๋ค๋ฆฐ ํ free