linux 下多线程错误 undefined reference to `sem_init'

undefined reference to `sem_init'
undefined reference to `sem_post'
undefined reference to `sem_wait'

编译选项需要加入一个多线程

gcc -pthread -o outfile.out filename.c

[source code]

#include "sched.h"
#include "pthread.h"
#include "stdio.h"
#include "stdlib.h"
#include "semaphore.h"
int producer(void * args);
int consumer(void * args);
pthread_mutex_t mutex;
sem_t product;
sem_t warehouse;
char buffer[8][4];
int bp=0;
int main(int argc,char * * argv)
{
pthread_mutex_init(& mutex,NULL);
sem_init(& product,0,0);
    sem_init(& warehouse,0,8);
int clone_flag,arg,retval;
    char * stack;
    clone_flag=CLONE_VM | CLONE_SIGHAND | CLONE_FS | CLONE_FILES;
    int i;
for(i=0;i<2;i++)
{ //创建四个线程
        arg=i;
        stack=(char *)malloc(4096);
        retval=clone((void *)producer,& (stack[4095]),clone_flag,(void *) & arg);
   stack=(char *)malloc(4096);
        retval=clone((void *)consumer,& (stack[4095]),clone_flag,(void *) & arg);
    }
    exit(1);
return 0;
}
int producer(void * args)
{
    int id = *((int *)args);
    int i;
    for(i=0;i<10;i++)
    {
   sleep(i+1); //表现线程速度差别
        sem_wait(&warehouse);
        pthread_mutex_lock(&mutex);
        if(id==0)
            strcpy(buffer[bp],"aaa\0");
        else
            strcpy(buffer[bp],"bbb\0");
        bp++;
        printf("producer%d produce %s in %d\n",id,buffer[bp],bp-1);
        pthread_mutex_unlock(&mutex);
        sem_post(&product);
    }
    printf("producer%d is over!\n",id);
}
int consumer(void * args)
{
    int id = * ((int *)args);
    int i;
    for(i=0;i<10;i++)
    {
        sleep(10-i); //表现线程速度差别
        sem_wait(&product);
        pthread_mutex_lock(&mutex);
        bp--;
        printf("consumer%d get %s in%d\n",id,buffer[bp],bp+1);
        strcpy(buffer[bp],"zzz\0");
        pthread_mutex_unlock(&mutex);
        sem_post(&warehouse);
    }
    printf("consumer%d is over!\n",id);
}本文转自:http://hi.baidu.com/luosiyong/blog/item/e5e1980fffd1b6e5ab6457e5.html

 

转载于:https://www.cnblogs.com/stli/archive/2010/03/11/1683823.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值