线程同步与互斥——实现互斥锁
今天我们来分享一下,线程同步与互斥——互斥锁的实现。
多个线程同时访问共享数据时可能会产生冲突,造成程序运行结果不是我们所预期的结果。
不产生冲突的多线程访问情况,代码和截图如下:
产生冲突的多线程访问情况,代码和截图如下:
注:每运行一次,结果都可能会不同。
由于多线程访问共享数据时可能会产生冲突,不能保证线程之间的同步与互斥。所以为了保证多线程访问共享数据时能够实现同步与互斥,所以我们可以使用线程的互斥锁。
当线程进入临界区时,该线程加锁,以此来确保此时占有临界资源,以此来实现互斥。当线程完成在临界区的一系列操作后,该线程释放锁,以此来确保其他线程可以占有临界资源,以此来实现同步。
互斥锁实现线程同步互斥的代码截图和运行结果如下:
互斥锁的源代码如下:
mypthread.c
- <span style=“font-family:SimSun;font-size:18px;”>#include<stdio.h>
- #include<pthread.h>
- //pthread_mutex_t lockp = PTHREAD_MUTEX_INITIALIZER;//可用全局锁
- int code = 0;
- void* thread_fun(void* arg){
- pthread_mutex_t* lockp = (pthread_mutex_t*)arg;
- int i=0;
- while(i<500){
- pthread_mutex_lock(lockp);
- int val = code;
- printf(” pthread pid:%d, tid:%u, code:%d\n”,getpid(), pthread_self(), code);
- usleep(30);
- code = val+1;
- i++;
- pthread_mutex_unlock(lockp);
- }
- return (void*)1;
- }
- int main(){
- pthread_t tid1;
- pthread_t tid2;
- pthread_mutex_t lockp;
- pthread_mutex_init(&lockp, 0);
- if(pthread_create(&tid1, NULL, thread_fun, &lockp)<0){
- perror(”pthread_creat”);
- return -1;
- }
- if(pthread_create(&tid2, NULL, thread_fun, &lockp)<0){
- perror(”pthread_creat”);
- return -2;
- }
- pthread_join(tid1, NULL);
- pthread_join(tid2, NULL);
- pthread_mutex_destroy(&lockp);
- return 0;
- }</span>
#include<stdio.h>
#include<pthread.h>
//pthread_mutex_t lockp = PTHREAD_MUTEX_INITIALIZER;//可用全局锁
int code = 0;
void* thread_fun(void* arg){
pthread_mutex_t* lockp = (pthread_mutex_t*)arg;
int i=0;
while(i<500){
pthread_mutex_lock(lockp);
int val = code;
printf(" pthread pid:%d, tid:%u, code:%d\n",getpid(), pthread_self(), code);
usleep(30);
code = val+1;
i++;
pthread_mutex_unlock(lockp);
}
return (void*)1;
}
int main(){
pthread_t tid1;
pthread_t tid2;
pthread_mutex_t lockp;
pthread_mutex_init(&lockp, 0);
if(pthread_create(&tid1, NULL, thread_fun, &lockp)<0){
perror("pthread_creat");
return -1;
}
if(pthread_create(&tid2, NULL, thread_fun, &lockp)<0){
perror("pthread_creat");
return -2;
}
pthread_join(tid1, NULL);
pthread_join(tid2, NULL);
pthread_mutex_destroy(&lockp);
return 0;
}
Makefile
- <span style=“font-family:SimSun;font-size:18px;”>mythread:mythread.c
- gcc -o @ ^ -lpthread
- .PHONY:clean
- clean:
- rm -f mythread</span>
mythread:mythread.c
gcc -o aaa@qq.com $^ -lpthread
.PHONY:clean
clean:
rm -f mythread
分享如上,愿大家天天有进步!
今天我们来分享一下,线程同步与互斥——互斥锁的实现。
多个线程同时访问共享数据时可能会产生冲突,造成程序运行结果不是我们所预期的结果。
不产生冲突的多线程访问情况,代码和截图如下:
产生冲突的多线程访问情况,代码和截图如下:
注:每运行一次,结果都可能会不同。
由于多线程访问共享数据时可能会产生冲突,不能保证线程之间的同步与互斥。所以为了保证多线程访问共享数据时能够实现同步与互斥,所以我们可以使用线程的互斥锁。
当线程进入临界区时,该线程加锁,以此来确保此时占有临界资源,以此来实现互斥。当线程完成在临界区的一系列操作后,该线程释放锁,以此来确保其他线程可以占有临界资源,以此来实现同步。
互斥锁实现线程同步互斥的代码截图和运行结果如下:
互斥锁的源代码如下:
mypthread.c
- <span style=“font-family:SimSun;font-size:18px;”>#include<stdio.h>
- #include<pthread.h>
- //pthread_mutex_t lockp = PTHREAD_MUTEX_INITIALIZER;//可用全局锁
- int code = 0;
- void* thread_fun(void* arg){
- pthread_mutex_t* lockp = (pthread_mutex_t*)arg;
- int i=0;
- while(i<500){
- pthread_mutex_lock(lockp);
- int val = code;
- printf(” pthread pid:%d, tid:%u, code:%d\n”,getpid(), pthread_self(), code);
- usleep(30);
- code = val+1;
- i++;
- pthread_mutex_unlock(lockp);
- }
- return (void*)1;
- }
- int main(){
- pthread_t tid1;
- pthread_t tid2;
- pthread_mutex_t lockp;
- pthread_mutex_init(&lockp, 0);
- if(pthread_create(&tid1, NULL, thread_fun, &lockp)<0){
- perror(”pthread_creat”);
- return -1;
- }
- if(pthread_create(&tid2, NULL, thread_fun, &lockp)<0){
- perror(”pthread_creat”);
- return -2;
- }
- pthread_join(tid1, NULL);
- pthread_join(tid2, NULL);
- pthread_mutex_destroy(&lockp);
- return 0;
- }</span>
#include<stdio.h>
#include<pthread.h>
//pthread_mutex_t lockp = PTHREAD_MUTEX_INITIALIZER;//可用全局锁
int code = 0;
void* thread_fun(void* arg){
pthread_mutex_t* lockp = (pthread_mutex_t*)arg;
int i=0;
while(i<500){
pthread_mutex_lock(lockp);
int val = code;
printf(" pthread pid:%d, tid:%u, code:%d\n",getpid(), pthread_self(), code);
usleep(30);
code = val+1;
i++;
pthread_mutex_unlock(lockp);
}
return (void*)1;
}
int main(){
pthread_t tid1;
pthread_t tid2;
pthread_mutex_t lockp;
pthread_mutex_init(&lockp, 0);
if(pthread_create(&tid1, NULL, thread_fun, &lockp)<0){
perror("pthread_creat");
return -1;
}
if(pthread_create(&tid2, NULL, thread_fun, &lockp)<0){
perror("pthread_creat");
return -2;
}
pthread_join(tid1, NULL);
pthread_join(tid2, NULL);
pthread_mutex_destroy(&lockp);
return 0;
}
Makefile
- <span style=“font-family:SimSun;font-size:18px;”>mythread:mythread.c
- gcc -o @ ^ -lpthread
- .PHONY:clean
- clean:
- rm -f mythread</span>
mythread:mythread.c
gcc -o aaa@qq.com $^ -lpthread
.PHONY:clean
clean:
rm -f mythread
分享如上,愿大家天天有进步!