例如 gcc -pthread -o test main.cpp
另外你的线程创建的不对,函数指针不能强转类型(这里也不用转)
pthread_create(&producter_t,NULL,(void*)producter_f,NULL)
pthread_create(&consumer_t,NULL,(void*)consumer_f,NULL)
应该是
pthread_create(&producter_t,NULL,producter_f,NULL)
pthread_create(&consumer_t,NULL,consumer_f,NULL)
编译时要用到pthread 库:gcc -lpthread
错误码位置:/usr/include/asm-generic/errno.h
gcc pthread_create.c -lpthread
思考:主子线程交替打印奇数偶数。
思考:证明线程可以自己取消自己。
思考:证明SIGKILL和SIGSTOP 是无法阻塞的。
/usr/include/bits/pthreadtypes.h中查看pthread_mutex_t
思考:用多线程将一个文件1.c拷贝3个副本,11.c,12.c,13.c
思考:多个生产者和消费者
思考:将互斥量等初始化使用pthread_once实现。
思考:设置线程的分离属性,然后在新县城中获取自己的分离属性。
在编译选项中包含mysql的头文件路径,再加上连接库,还有线程的链接库 比如 g++ -o xxx xxx.cpp xxx.cpp -I /usr/include/mysql -l mysqlclient -l pthread欢迎分享,转载请注明来源:内存溢出
评论列表(0条)