互斥锁、自旋锁、原子操作

简介: 互斥锁、自旋锁、原子操作

1、互斥锁  -- 临界区资源已经被1个线程占用,另一个线程过来访问临界资源的时候,会被CPU切换线程,不让运行后来的这个线程

适用于 锁住的内容多,(例如红黑数的增加节点操作),切换线程的代价小于等待的代价

2、自旋锁 -- 临界区资源已经被1个线程占用,另一个线程过来访问临界资源的时候,相当于是一个while(1),不断的查看这个资源是否可用,如果可用,就进去访问临界资源,如果不可用,则继续循环访问

适用于锁住的内容少,(例如就执行++操作),切换线程的代价大于等待的代价

3、原子操作  -- 执行的操作完全不可分割,要么全部成功,要么全部失败

最好的方式就是适用原子操作。

 

场景:

1、用10个线程分别对 count 加 100000 次,  看看结果是否是 10*100000

#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#define PTHREAD_NUM 10
#define INFO  printf
pthread_mutex_t mutex;
pthread_spinlock_t spin;
int inc(int *v,int add)
{
  int old;
    //汇编,做一个原子操作
  __asm__ volatile(
    "lock;xaddl %2, %1;"
    :"=a" (old)
    :"m"(*v),"a"(add)
    :"cc","memory"
  );
  return old;
}
void * thread_callback(void *arg)
{
  int *count = (int *)arg;
  int i = 100000;
while(i--)
  {
  #if 0
//互斥锁
    pthread_mutex_lock(&mutex);
    (*count)++;
    pthread_mutex_unlock(&mutex);
  #elif 0
//自旋锁
    pthread_spin_lock(&spin);
    (*count)++;
    pthread_spin_unlock(&spin);
  #else
//原子操作
    inc(count,1);
  #endif
    usleep(1);
  }
}
int main()
{
  pthread_t thread[PTHREAD_NUM] = {0};
  pthread_mutex_init(&mutex,NULL);
  pthread_spin_init(&spin,0);
  int count  = 0;
  for(int i = 0;i<PTHREAD_NUM;i++){
    pthread_create(&thread[i],NULL,thread_callback,&count);
  }
  for(int i = 0;i<100;i++)
  {
    INFO("count == %d\n",count);
    sleep(1);
  }
  return 0;
}

2、mutex、lock、atomic 性能对比

//并发
//互斥锁mutex
//  如果获取不到资源会让出cpu
//  使用场景
//    共享区域执行的内容较多的情况
//自旋锁spinlock
//  如果获取不到资源,会原地自旋,忙等
//  使用场景
//    共享区域执行的内容较少的情况
//原子操作
//  不可分割
//  使用场景
//    做简单++、--操作
//
#include <stdio.h>
#include <pthread.h>
#include <unistd.h>
#include <time.h>
#define MAX_PTHREAD 2
#define LOOP_LEN    1000000000
#define LOOP_ADD    10000
int count = 0;
pthread_mutex_t mutex;
pthread_spinlock_t spin;
typedef void *(*functhread)(void *arg);
void do_add(int num)
{
  int sum = 0;
  for(int i = 0;i<num;i++)
  {
    sum +=i;
  }
}
int atomic_add(int *v,int add)
{
  int old;
  __asm__ volatile(
    "lock;xaddl %2, %1;"
    :"=a" (old)
    :"m"(*v),"a"(add)
    :"cc","memory"
  );
  return old;
}
void * atomicthread(void *arg)
{
  for(int i  = 0;i<LOOP_LEN;i++){
    atomic_add(&count,1);
  }
}
void * spinthread(void *arg)
{
  for(int i  = 0;i<LOOP_LEN;i++){
    pthread_spin_lock(&spin);
    count++;
    //do_add(LOOP_ADD);
    pthread_spin_unlock(&spin);
  }
}
void * mutexthread(void *arg)
{
  for(int i  = 0;i<LOOP_LEN;i++){
    pthread_mutex_lock(&mutex);
    count++;
    //do_add(LOOP_ADD);
    pthread_mutex_unlock(&mutex);
  }
}
int test_lock(functhread thre,void * arg)
{
  clock_t start = clock();
  pthread_t tid[MAX_PTHREAD] = {0};
  for(int i = 0;i<MAX_PTHREAD;i++)
  {
  //创建线程
    int ret = pthread_create(&tid[i],NULL,thre,NULL);
    if(0 != ret)
    {
      printf("pthread create rror\n");
      return -1;
    }
  }
  for(int i = 0;i<MAX_PTHREAD;i++){
//回收线程
    pthread_join(tid[i],NULL);
  }
  clock_t end = clock();
  //printf("start  -- %ld\n",start);
  //printf("end  -- %ld\n",end);
  //printf("CLOCKS_PER_SEC  -- %ld\n",CLOCKS_PER_SEC);
  printf("spec lock is  -- %ld\n",(end - start)/CLOCKS_PER_SEC);
}
int main()
{
  pthread_mutex_init(&mutex,NULL);
  pthread_spin_init(&spin,0);
//测试spin
  count = 0;
  printf("use spin ------ \n");
  test_lock(spinthread,NULL);
  printf("count == %d\n",count);
//测试mutex
  count = 0;
  printf("use mutex ------ \n");
  test_lock(mutexthread,NULL);
  printf("count == %d\n",count);
//测试atomic
  count = 0;
  printf("use automic ------ \n");
  test_lock(atomicthread,NULL);
  printf("count == %d\n",count);
  return 0;
}

结果

相关文章
|
Cloud Native Go C语言
C 语言的 互斥锁、自旋锁、原子操作
C 语言的 互斥锁、自旋锁、原子操作
|
1月前
|
缓存 数据库
读写锁和互斥锁的区别
【10月更文挑战第6天】
26 1
|
1月前
|
Java API
【多线程】乐观/悲观锁、重量级/轻量级锁、挂起等待/自旋锁、公平/非公锁、可重入/不可重入锁、读写锁
【多线程】乐观/悲观锁、重量级/轻量级锁、挂起等待/自旋锁、公平/非公锁、可重入/不可重入锁、读写锁
32 0
|
5月前
|
Java 调度
阻塞锁和自旋锁的理解
总体来说,自旋锁适用于锁定时间短、锁竞争不频繁的场景,而阻塞锁更适合锁定时间较长或锁竞争较频繁的场景。根据具体的应用需求选择合适的锁类型,可以优化系统性能。
83 0
|
11月前
|
API 调度 C语言
互斥锁,自旋锁,原子操作的原理,区别和实现
v互斥锁,自旋锁,原子操作的原理,区别和实现
122 0
|
6月前
|
调度
互斥锁的初步实现
互斥锁的初步实现
114 0
|
6月前
|
Linux
Linux多线程中互斥锁、读写锁、自旋锁、条件变量、信号量详解
Linux多线程中互斥锁、读写锁、自旋锁、条件变量、信号量详解
193 0
Linux多线程中互斥锁、读写锁、自旋锁、条件变量、信号量详解
|
安全 算法 C++
C++中互斥锁的使用
我们现在有一个需求,我们需要对 g_exceptions 这个 vector 的访问进行同步处理,确保同一时刻只有一个线程能向它插入新的元素。为此我使用了一个 mutex 和一个锁(lock)。mutex 是同步操作的主体,在 C++ 11 的 <mutex> 头文件中,有四种风格的实现: mutex:提供了核心的 lock() unlock() 方法,以及当 mutex 不可用时就会返回的非阻塞方法 try_lock() recursive_mutex:允许同一线程内对同一 mutex 的多重持有 timed_mutex: 与 mutex 类似,但多了 try_lock_for() t
101 0
自旋锁是啥?
自旋锁是一种基于忙等待的锁机制,它允许线程反复检测锁状态,而不是阻塞等待。当线程尝试获取一个自旋锁时,如果锁已经被其他线程持有,该线程会一直在一个循环中自旋,直到锁被释放。
59 0