写在前面:
我的Linux的学习之路非常坎坷。第一次学习Linux是在大一下的开学没多久,结果因为不会安装VMware就无疾而终了,可以说是没开始就失败了。第二次学习Linux是在大一下快放暑假(那个时候刚刚过完考试周),我没什么事做就又重拾Linux,不服输的我选择再战Linux,这一次学习还算顺利,虽然中间有些小插曲但是不影响整体学习进度, 我看着B站上的视频一点点学习Linux,基本上把Linux的基础指令学完了。学完之后我又遇到问题了,视频基本上到这就结束了,而我却不知道下一步该学什么,于是就没怎么碰Linux,结果没过多长时间我就把学的Linux指令忘的一干二净。现在是我第三次学习Linux,我决定重新开始学Linux,同时为了让自己学习的效果更好,我选择以写blog的形式逼迫自己每天把学习到的Linux知识整理下来。这也就是我写这个系列blog的原因。
协同步调,对公共区数据按序访问,防止数据混乱,产生与时间有关的错误。
使用锁。建议锁!对公共数据进行保护。所有线程应该在访问公共数据前先拿锁在访问,但锁本身不具备强制性。
这段话可能有点绕,我在这里稍微解释一下。正确使用锁可以保证线程同步,但你也可以不使用锁直接去访问公共数据,也可以访问到,但这样就不能保证线程同步,就是说程序本身并不能强制你使用锁。
源代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
pthread_mutex_t mutex;
void sys_err(char* str,int errno)
{
fprintf(stderr,"%s:%s",str,strerror(errno));
exit(-1);
}
void* fun(void* arg)
{
while(1)
{
printf("hellow ");
sleep(rand()%3);
printf("world\n");
sleep(rand()%3);
}
return NULL;
}
int main()
{
pthread_t tid;
srand(time(NULL));
int res=pthread_mutex_init(&mutex,NULL);
if(res!=0)
sys_err("init error",res);
res=pthread_create(&tid,NULL,fun,NULL);
if(res!=0)
sys_err("pthread create error",res);
while(1)
{
printf("HELLOW ");
sleep(rand()%3);
printf("WORLD\n");
sleep(rand()%3);
}
return 0;
}
效果:
我们可以看到,我们的本意是让大写的“HELLOW WORLD”和小写的“hellow world”在一行输出,这里的公共资源是屏幕
STDOUT_FILENO
,但是由于我们让每一个线程打印完上一句话就睡一下,这样就会导致线程混乱。
pthread_mutex_t mutex
这个不是函数,是一个类型。是后面函数都会用到的参数。int pthread_mutex_init(pthread_mutex_t* restrict mutex,const pthread_mutexattr_t* restrict attr);
创建int pthread_mutex_destory(pthread_mutex* mutex);
销毁int pthread_mutex_lock(pthread_mutex_t *mutex);
上锁int pthread_mutex_trylock(pthread_mutex_t *mutex);
尝试上锁int pthread_mutex_unlock(pthread_mutex_t *mutex);
解锁restrict(关键字): 用来限定指针变量。被该关键字限定的指针变量所指向的内存操作,必须由本指针完成。
pthread_mutex_t
类型,其本质是一个结构体。为简化理解,应用时可忽略其实现细节,简单当成整数看待pthread_mutex_t mutex
;变量mutex
只有两种取值:0,1
pthread_mutex_t lock;
创建锁pthread_mutex_init;
初始化pthread_mutex_lock;
加锁pthrad_mutext_unlock();
解锁pthead_mutex_destroy;
销毁锁pthread_mutex_init(&mutex,NULL);
pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER
我们还是实现上面的功能,只不过这次我们加锁,实现大写的在一行,小写的在一行。
源代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
pthread_mutex_t mutex;
void sys_err(char* str,int errno)
{
fprintf(stderr,"%s:%s\n",str,strerror(errno));
exit(-1);
}
void* fun(void* arg)
{
while(1)
{
pthread_mutex_lock(&mutex);
printf("hellow ");
sleep(rand()%3);
printf("world\n");
pthread_mutex_unlock(&mutex);
sleep(rand()%3);
}
return NULL;
}
int main()
{
pthread_t tid;
srand(time(NULL));
int res=pthread_mutex_init(&mutex,NULL);
if(res!=0)
sys_err("mutex init",res);
res=pthread_mutex_init(&mutex,NULL);
if(res!=0)
sys_err("init error",res);
res=pthread_create(&tid,NULL,fun,NULL);
if(res!=0)
sys_err("pthread create error",res);
while(1)
{
pthread_mutex_lock(&mutex);
printf("HELLOW ");
sleep(rand()%3);
printf("WORLD\n");
pthread_mutex_unlock(&mutex);
sleep(rand()%3);
}
return 0;
}
效果:
注意事项
pthread_mutex_init()
函数调用成功)技巧
EBUSY
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
pthread_mutex_t mutex;
int main()
{
pthread_t tid;
pthread_mutex_init(&mutex,NULL);
pthread_mutex_lock(&mutex);
pthread_mutex_lock(&mutex);
printf("hello linux\n");
return 0;
}
效果就是光标一直在闪,程序一直阻塞在那里。
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
pthread_mutex_t mutex1;
pthread_mutex_t mutex2;
void* fun(void* arg)
{
pthread_mutex_lock(&mutex2);
sleep(1);
printf("hello linux\n");
pthread_mutex_lock(&mutex1);
return NULL;
}
int main()
{
pthread_t tid;
pthread_mutex_init(&mutex1,NULL);
pthread_mutex_init(&mutex2,NULL);
pthread_create(&tid,NULL,fun,NULL);
pthread_mutex_lock(&mutex1);
sleep(1);
printf("HELLO LINUX\n");
pthread_mutex_lock(&mutex2);
printf("hello linux\n");
return 0;
}
效果和上面一种死锁一样,光标一直在那闪。
pthread_rwlock_t rwlock;
这不是函数,是个类型。pthread_rwlock_init(&rwlock, NULL);
:创建pthread_rwlock_rdlock(&rwlock);
:加读锁pthread_rwlock_wrlock(&rwlock);
:加写锁pthread_rwlock_unlock(&rwlock);
:解锁pthread_rwlock_destroy(&rwlock);
销毁锁由于这个读写不是重点,我就不亲自写了。
源代码:
效果:
条件变量不是锁,但是通常结合锁来使用。
pthread_cond_t cond;
这不是函数,是一个类型pthread_cond_init();
:创建条件变量pthread_cond_destroy();
:销毁条件变量pthread_cond_wait();
:阻塞等待条件pthread_cond_timewait();
:有时限的阻塞等待条件pthread-cond_signal();
:至少通知一个阻塞等待的条件变量pthread-cond_broadcast();
通知所有阻塞等待的条件变量pthread_cond_init(&cond,NULL);
pthread_cond_t cond=PTHREAD_COND_INITIALIZER;
pthread_cond_wait(&cond,&mutex)
作用
pthread_mutex_unlock(&mutex)
),1,2两步为一个原子操作.pthread_mutex_lock(&mutex);
)源代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
struct mesg
{
int num;
struct mesg* next;
};
struct mesg* head;
pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond=PTHREAD_COND_INITIALIZER;
void sys_err(char* str,int errno)
{
fprintf(stderr,"%s:%s\n",str,strerror(errno));
exit(-1);
}
void* produser(void* arg)
{
while(1)
{
struct mesg* m=malloc(sizeof (struct mesg));
m->num=rand()%1000+1;
printf("---produce:%d\n",m->num);
pthread_mutex_lock(&mutex);
m->next=head;
head=m;
pthread_mutex_unlock(&mutex);
pthread_cond_signal(&cond);
sleep(rand()%3);
}
return NULL;
}
void* consumer(void* arg)
{
while(1)
{
struct mesg* m;
pthread_mutex_lock(&mutex);
if(head==NULL)
pthread_cond_wait(&cond,&mutex);
m=head;
head=m->next;
pthread_mutex_unlock(&mutex);
printf("----------consume:%d\n",m->num);
free(m);
sleep(rand()%3);
}
return NULL;
}
int main()
{
pthread_t tid_pro,tid_con;
srand(time(NULL));
int res=pthread_create(&tid_pro,NULL,produser,NULL);
if(res!=0)
sys_err("pthread create error",res);
res=pthread_create(&tid_con,NULL,consumer,NULL);
if(res!=0)
sys_err("pthread create error",res);
pthread_detach(tid_pro); //if use this way,must use pthread_exit to exit main pthread.
pthread_detach(tid_con);
// pthread_join(tid_pro,NULL);
// pthread_join(tid_con,NULL);
// return 0;
pthread_exit(0);
}
效果:
源代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
struct mesg
{
int num;
struct mesg* next;
};
struct mesg* head;
pthread_mutex_t mutex=PTHREAD_MUTEX_INITIALIZER;
pthread_cond_t cond=PTHREAD_COND_INITIALIZER;
void sys_err(char* str,int errno)
{
fprintf(stderr,"%s:%s\n",str,strerror(errno));
exit(-1);
}
void* produser(void* arg)
{
while(1)
{
struct mesg* m=malloc(sizeof (struct mesg));
m->num=rand()%1000+1;
printf("---produce:%d\n",m->num);
pthread_mutex_lock(&mutex);
m->next=head;
head=m;
pthread_mutex_unlock(&mutex);
pthread_cond_signal(&cond);
sleep(rand()%3);
}
return NULL;
}
void* consumer(void* arg)
{
int i=(int) arg;
while(1)
{
struct mesg* m;
pthread_mutex_lock(&mutex);
while(head==NULL)
pthread_cond_wait(&cond,&mutex);
m=head;
head=m->next;
pthread_mutex_unlock(&mutex);
printf("%dth consumer----------consume:%d\n",i,m->num);
free(m);
sleep(rand()%3);
}
return NULL;
}
int main()
{
pthread_t tid_pro,tid_con1,tid_con2,tid_con3;
srand(time(NULL));
int res=pthread_create(&tid_pro,NULL,produser,NULL);
if(res!=0)
sys_err("pthread create error",res);
res=pthread_create(&tid_con1,NULL,consumer,(void*)1);
if(res!=0)
sys_err("pthread create error",res);
res=pthread_create(&tid_con2,NULL,consumer,(void*)2);
if(res!=0)
sys_err("pthread create error",res);
res=pthread_create(&tid_con3,NULL,consumer,(void*)3);
if(res!=0)
sys_err("pthread create error",res);
// pthread_detach(tid_pro);
// pthread_detach(tid_con);
pthread_join(tid_pro,NULL);
pthread_join(tid_con1,NULL);
pthread_join(tid_con2,NULL);
pthread_join(tid_con3,NULL);
return 0;
}
效果:
注意事项
我们在多个消费者模型一定在消费者线程中把等待阻塞的判断从if
改成while
.
- 两个消费者都阻塞在条件变量上,就是说没有数据可以消费。
- 完事儿都把锁还回去了,生产者此时生产了一个数据,会同时唤醒两个因条件变量阻塞的消费者,完事儿两个消费者去抢锁。
- 结果就是A消费者拿到锁,开始消费数据,B消费者阻塞在锁上(如下图)。
- 之后A消费完数据,把锁归还,B被唤醒,然而此时已经没有数据供B消费了。
- 所以这里有个逻辑错误,消费者阻塞在条件变量那里应该使用while循环。这样A消费完数据后,B做的第一件事不是去拿锁,而是判定条件变量。
实测,如果不改的话就会发生段错误。
sem_t sem
这不是函数,是类型。int sem_init(sem_t *sem, int pshared, unsigned int value);
创建信号量sem_destroy();
:销毁信号量sem_wait();
:一次调用,做一次-- 操作, 当信号量的值为 0 时,再次 – 就会阻塞。 (对比 pthread_mutex_lock
)sem_post();
:一次调用,做一次++ 操作. 当信号量的值为 N 时, 再次 ++ 就会阻塞。(对比 pthread_mutex_unlock
)int sem_init(sem_t *sem, int pshared, unsigned int value);
参数:
sem
:信号量pshared
:0表示线程同步,1表示进程同步value
:N值。(指定同时访问的线程数)源代码:
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<unistd.h>
#include<pthread.h>
#include<semaphore.h>
#define MAX 5
sem_t blank,product;
int queue[MAX];
void* producer(void* arg)
{
int i=0;
while(1)
{
sem_wait(&blank);
queue[i]=rand()%1000+1;
sem_post(&product);
printf("-------------producer:%d\n",queue[i]);
i=(i+1)%MAX;
sleep(rand()%2);
}
return NULL;
}
void* consumer(void* arg)
{
int i=0;
while(1)
{
sem_wait(&product);
printf("---consumer:%d\n",queue[i]);
sem_post(&blank);
i=(i+1)%MAX;
sleep(rand()%2);
}
return NULL;
}
int main()
{
pthread_t ctid,ptid;
srand(time(NULL));
sem_init(&blank,0,MAX);
sem_init(&product,0,0); //why set 0?This is mean 0 pthread visit in the same time?
pthread_create(&ctid,NULL,producer,NULL);
pthread_create(&ptid,NULL,consumer,NULL);
pthread_join(ctid,NULL);
pthread_join(ptid,NULL);
sem_destroy(&blank);
sem_destroy(&product);
return 0;
}
效果:
个人亲身经验:我们学习的一系列Linux命令,一定要自己亲手去敲。不要只是看别人敲代码,不要只是停留在眼睛看,脑袋以为自己懂了,等你实际上手去敲会发现许许多多的这样那样的问题。毕竟“实践出真知”。
如果你觉得我写的题解还不错的,请各位王子公主移步到我的其他题解看看
- 数据结构与算法部分(还在更新中):
- C++ STL总结 - 基于算法竞赛(强力推荐)
- 动态规划——01背包问题
- 动态规划——完全背包问题
- 动态规划——多重背包问题
- 动态规划——分组背包问题
- 动态规划——最长上升子序列(LIS)
- 二叉树的中序遍历(三种方法)
- 最长回文子串
- 最短路算法——Dijkstra(C++实现)
- 最短路算法———Bellman_Ford算法(C++实现)
- 最短路算法———SPFA算法(C++实现)
- 最小生成树算法———prim算法(C++实现)
- 最小生成树算法———Kruskal算法(C++实现)
- 染色法判断二分图(C++实现)
- Linux部分(还在更新中):
“种一颗树最好的是十年前,其次就是现在”
所以,
“让我们一起努力吧,去奔赴更高更远的山海”
如果有错误?,欢迎指正哟😋
🎉如果觉得收获满满,可以动动小手,点点赞👍,支持一下哟🎉