我的目标是获得Dining Philosophers C Program的输出。 我在Windows 7上使用Visual Studio 2013来编译和执行C程序。 得到错误,说明pthread.h,semaphore.h不可用。 下载了相同的Windows版本并包含在项目中。
现在我收到以下8个错误
警告C4013:&#39>睡觉'不确定的;假设extern返回int
错误LNK2019:未解析的外部符号__imp__sem_init已引用 在函数_main
中错误LNK2019:未解析的外部符号__imp__sem_wait被引用 在函数_put_fork
错误LNK2019:引用了未解析的外部符号__imp__sem_post 在函数_put_fork
错误LNK2019:未解析的外部符号__imp__pthread_create 在函数_main
中引用错误LNK2019:未解析的外部符号__imp__pthread_join 在函数_main
中引用错误LNK2019:未解析的外部符号_sleep在中引用 功能_philospher
错误LNK1120:6个未解析的外部
我使用的代码是`
#include<stdio.h>
#include<semaphore.h>
#include<pthread.h>
#define N 5
#define THINKING 0
#define HUNGRY 1
#define EATING 2
#define LEFT (ph_num+4)%N
#define RIGHT (ph_num+1)%N
sem_t mutex;
sem_t S[N];
void * philospher(void *num);
void take_fork(int);
void put_fork(int);
void test(int);
int state[N];
int phil_num[N] = { 0, 1, 2, 3, 4 };
int main()
{
int i;
pthread_t thread_id[N];
sem_init(&mutex, 0, 1);
for (i = 0; i<N; i++)
sem_init(&S[i], 0, 0);
for (i = 0; i<N; i++)
{
pthread_create(&thread_id[i], NULL, philospher, &phil_num[i]);
printf("Philosopher %d is thinking\n", i + 1);
}
for (i = 0; i<N; i++)
pthread_join(thread_id[i], NULL);
}
void *philospher(void *num)
{
while (1)
{
int *i = num;
sleep(1);
take_fork(*i);
sleep(0);
put_fork(*i);
}
}
void take_fork(int ph_num)
{
sem_wait(&mutex);
state[ph_num] = HUNGRY;
printf("Philosopher %d is Hungry\n", ph_num + 1);
test(ph_num);
sem_post(&mutex);
sem_wait(&S[ph_num]);
sleep(1);
}
void test(int ph_num)
{
if (state[ph_num] == HUNGRY && state[LEFT] != EATING && state[RIGHT] != EATING)
{
state[ph_num] = EATING;
sleep(2);
printf("Philosopher %d takes fork %d and %d\n", ph_num + 1, LEFT + 1, ph_num + 1);
printf("Philosopher %d is Eating\n", ph_num + 1);
sem_post(&S[ph_num]);
}
}
void put_fork(int ph_num)
{
sem_wait(&mutex);
state[ph_num] = THINKING;
printf("Philosopher %d putting fork %d and %d down\n", ph_num + 1, LEFT + 1, ph_num + 1);
printf("Philosopher %d is thinking\n", ph_num + 1);
test(LEFT);
test(RIGHT);
sem_post(&mutex);
}`
答案 0 :(得分:1)
为时已晚,但今天我也遇到了这个问题。 问题: I can't use pthread in window platform。 解决方案:在C:\ Program Files(x86)\ Microsoft Visual Studio 10.0 \ VC \ lib中找到pthreadVC2.lib的另一个变体(对我而言,它是x86而不是x64)