翼度科技»论坛 云主机 LINUX 查看内容

Linux 线程和线程同步

5

主题

5

帖子

15

积分

新手上路

Rank: 1

积分
15
1. 线程的概念

 【操作系统】2.进程和线程 - imXuan - 博客园 (cnblogs.com)

  • 线程:light weight process(LWP)轻量级的进程,在 Linux 中本质上仍然是一个进程
  • 进程:有独立的地址空间,独立PCB,可以当作只有一个线程的进程。进程是计算机资源分配的最小单位
  • 线程:有独立的PCB,共享物理地址空间,是最小的执行单位。cpu时间片划分以PCB为依据,是调度的基本单位
  • LWP号:cpu划分时间片的依据。指令 " ps -Lf pid " 查看
1.1 线程共享的资源


  • 1) 文件描述符表
  • 2) 每种信号的处理方式
  • 3) 当前工作目录
  • 4) 用户ID和组ID
  • 内存地址空间 (.text/.data/.bss/heap/共享库) -> 堆区全局共享变量是共享的(进程是读时共享写时复制,实际上就是非共享)
1.2 线程非共享资源


  • 1) 线程id
  • 2) 处理器现场和栈指针(内核栈)
  • 3) 独立的栈空间(用户空间栈)
  • 4) errno变量
  • 5) 信号屏蔽字(共享信号,但是可以使用信号屏蔽字)
  • 6) 调度优先级
1.3 线程优缺点


  • 优点:

    • 提高程序并发性
    • 开销小
    • 数据通信、共享数据方便

  • 缺点:

    • 库函数,不稳定
    • 调试、编写困难、gdb不支持
    • 对信号支持不好
    • 优点相对突出,缺点均不是硬伤。Linux下由于实现方法导致进程、线程差别不是很大。

2. 线程常用操作


  • 创建线程:pthread_create
  • 线程获取:pthread_self
  • 线程退出:

    • 线程内部:return void* (0);
    • 线程内部:pthread_exit(void *(0));
    • 线程外部:pthread_canel(返回值是 -1,需要一个取消点)

  • 线程回收

    • 手动回收:pthread_join
    • 自动回收:pthread_detach

2.1 创建线程 pthread_create

  功能:创建一个线程。
  1. #include <pthread.h>
  2. int pthread_create(pthread_t *thread,
  3.             const pthread_attr_t *attr,
  4.             void *(*start_routine)(void *),
  5.             void *arg );
  6. /*  参数:
  7.         thread:传出参数。线程标识符地址(一个无符号数)。
  8.         attr:线程属性结构体地址,通常设置为 NULL。
  9.         start_routine:线程函数的入口地址。
  10.         arg:传给线程函数的参数。
  11.     返回值:
  12.         成功:0
  13.         失败:非 0
  14. */
复制代码
   线程中处理出错
  1. #include <string.h>
  2. char *strerror(int errnum);
  3. fprintf(stderr, "xxx error: %s\n", strerror(错误号));
复制代码
2.2 获取线程ID pthread_self

  功能:获取线程号(与ps -Lf 查看的 id 不同)
  1. #include <pthread.h>
  2. pthread_t pthread_self(void);
  3. /*   参数:无
  4.      返回值 调用线程的线程 ID 。
  5. */
复制代码
2.3 线程退出 pthread_exit

  功能:退出调用线程。一个进程中的多个线程是共享该进程的数据段,因此,通常线程退出后所占用的资源并不会释放。

  • return:返回到调用者
  • exit:退出进程
  • pthread_exit:退出线程
  1. #include <pthread.h>
  2. void pthread_exit(void *retval);
  3. /*    参数:retval:存储线程退出状态的指针。
  4.       返回值:无 */
复制代码
2.4 线程回收 pthread_join

  功能:等待线程结束(此函数会阻塞),并回收线程资源,类似进程的 wait() 函数。如果线程已经结束,那么该函数会立即返回。
  1. #include <pthread.h>
  2. int pthread_join(pthread_t thread, void **retval);
  3. /*  参数:
  4.         thread:被回收的线程号。
  5.         retval:用来存储线程退出状态的指针的地址
  6.                (pthread_exit 退出返回值是 void*, 这里是一个指针, 指向 void*指针, 所以是void**)
  7.     返回值:
  8.         成功:0
  9.         失败:非 0         */
复制代码
2.5 线程分离 pthread_detach

  功能:使调用线程与当前进程分离,分离后不代表此线程不依赖与当前进程,线程分离的目的是将线程资源的回收工作交由系统自动来完成,也就是说当被分离的线程结束之后,系统会自动回收它的PCB资源。所以,此函数不会阻塞。
  1. #include <pthread.h>
  2. int pthread_detach(pthread_t thread);
  3. /*  参数:thread:线程号。
  4.     返回值:
  5.         成功:0
  6.         失败:非0            */
复制代码
2.6 线程取消 pthread_cancel

  功能:杀死(取消)线程

  • 被 pthread_cancel() 杀死的线程,使用 pthread_join() 再进行回收,会得到返回值 -1
  • 使用 pthread_cancel() 杀死线程必须有一个保存点才能生效,否则无法杀死线程。应该在被 cancel 函数调用的线程函数里自己添加一个取消点 pthread_testcancel(); 实际上就是进入系统内核,给他一个杀死线程的机会
  1. #include <pthread.h>
  2. int pthread_cancel(pthread_t thread);
  3. /*  参数:thread : 目标线程ID。
  4.     返回值:
  5.         成功:0
  6.         失败:出错编号             */<br>
复制代码
3. 线程同步

3.1 互斥锁 pthread_mutex_t

  互斥锁是一种简单的加锁的方法来控制对共享资源的访问,互斥锁只有两种状态,即加锁( lock )和解锁( unlock )
  1. #include <pthread.h>
  2. // 创建互斥锁
  3. pthread_mutex_t mutex;
  4. // 静态初始化 互斥锁
  5. mutex = PTHREAD_MUTEX_INITIALIZER;
  6. // 动态初始化 互斥锁, attr:设置互斥量的属性, NULL表示默认
  7. int pthread_mutex_init(pthread_mutex_t *restrict mutex,  const pthread_mutexattr_t *restrict attr);
  8. // 销毁指定的一个互斥锁。互斥锁在使用完毕后,必须要对互斥锁进行销毁,以释放资源
  9. int pthread_mutex_destroy(pthread_mutex_t *mutex);
  10. // 对互斥锁上锁,若互斥锁已经上锁,则调用者阻塞,直到互斥锁解锁后再上锁
  11. int pthread_mutex_lock(pthread_mutex_t *mutex);
  12. // 尝试对互斥锁上锁,若已经上锁跳过执行后面的代码
  13. int pthread_mutex_trylock(pthread_mutex_t *mutex);
  14. // 对指定的互斥锁解锁
  15. int pthread_mutex_unlock(pthread_mutex_t *mutex);
复制代码
3.2 读写锁 pthread_rwlock_t

  当有一个线程已经持有互斥锁时,互斥锁将所有试图进入临界区的线程都阻塞住。但是当前持有互斥锁的线程只是要读访问共享资源,而同时有其它几个线程也想读取这个共享资源,但是由于互斥锁的排它性,所有其它线程都无法获取锁,也就无法读访问共享资源了,但是实际上多个线程同时读访问共享资源并不会导致问题。
  在对数据的读写操作中,更多的是读操作,写操作较少,例如对数据库数据的读写应用。为了满足当前能够允许多个读出,但只允许一个写入的需求,线程提供了读写锁来实现。
读写锁的特点:

  • 如果有其它线程读数据,则允许其它线程执行读操作,但不允许写操作
  • 如果有其它线程写数据,则其它线程都不允许读、写操作
读写锁分为读锁和写锁,规则如下:

  • 如果某线程申请了读锁,其它线程可以再申请读锁,但不能申请写锁
  • 如果某线程申请了写锁,其它线程不能申请读锁,也不能申请写锁
举例子:线程1 给读写锁加了读锁,此时 线程2 请求读锁、线程3 请求写锁;则 线程2 的读锁会被阻塞,等 线程1 读锁释放后,线程3 进行写,之后 线程2 再读
  1. #include <pthread.h>
  2. // 初始化一个读写锁(restrict 修饰指针变量, 被变量修饰的内存操作只能由本指针操作)
  3. int pthread_rwlock_init(pthread_rwlock_t *restrict rwlock, const pthread_rwlockattr_t *restrict attr);
  4. // 销毁一个读写锁
  5. int pthread_rwlock_destroy(pthread_rwlock_t *rwlock);
  6. // 阻塞上读锁
  7. int pthread_rwlock_rdlock(pthread_rwlock_t *rwlock);
  8. // 非堵塞上读锁
  9. int pthread_rwlock_tryrdlock(pthread_rwlock_t *rwlock);
  10. // 阻塞上写锁
  11. int pthread_rwlock_wrlock(pthread_rwlock_t *rwlock);
  12. // 非阻塞上写锁
  13. int pthread_rwlock_trywrlock(pthread_rwlock_t *rwlock);
  14. // 全解锁
  15. int pthread_rwlock_unlock(pthread_rwlock_t *rwlock);
复制代码
3.3 条件变量 pthread_cond_t

  与互斥锁不同,条件变量是用来等待而不是用来上锁的,条件变量本身不是锁,条件变量用来自动阻塞一个线程,直到某特殊情况发生为止。通常条件变量和互斥锁同时使用。生产者消费者模型中比较常用
  条件变量的两个动作:

  • 条件不满, 阻塞线程
  • 当条件满足, 通知阻塞的线程开始工作
  条件变量的类型: pthread_cond_t
  1. #include <pthread.h>
  2. // 初始化一个条件变量
  3. int pthread_cond_init(pthread_cond_t *restrict cond, const pthread_condattr_t *restrict attr);
  4. // 销毁一个条件变量
  5. int pthread_cond_destroy(pthread_cond_t *cond);
  6. // 等待条件满足
  7. int pthread_cond_wait(pthread_cond_t *restrict cond, pthread_mutex_t *restrict mutex);
  8. /*
  9. * 功能:
  10. *   1.阻塞等待一个条件变量
  11. *   2.解锁已经加锁成功的互斥量    (1.2为原子操作)
  12. *   .....等待.....
  13. *   3.当条件满足,函数返回时,重新加锁互斥量
  14. */
  15. // 等待条件满足, 超时退出
  16. int pthread_cond_timedwait(pthread_cond_t *restrict cond, pthread_mutex_t *restrict mutex, const struct timespec*restrict abstime);
  17. // 唤醒阻塞在条件变量上的线程
  18. int pthread_cond_signal(pthread_cond_t *cond);
  19. // 唤醒所有阻塞在条件变量上的线程
  20. int pthread_cond_broadcast(pthread_cond_t *cond);
复制代码
  timespec结构体(abs_time 表示绝对时间,从1970年1月1日 00:00:00计算)
  1. struct timespec {
  2.     time_t tv_sec;      /* seconds */ // 秒
  3.     long   tv_nsec; /* nanosecondes*/ // 纳秒
  4. }
  5. time_t cur = time(NULL);        //获取当前时间。
  6. struct timespec t;              //定义timespec 结构体变量t
  7. t.tv_sec = cur + 1;             // 定时1秒
  8. pthread_cond_timedwait(&cond, &t);
复制代码
  一个示例代码
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <string.h>
  4. #include <pthread.h>
  5. void err_thread(int ret, char* str)
  6. {
  7.     if(ret!=0){
  8.         fprintf(stderr, "%s:%s\n", str, strerror(ret));
  9.         pthread_exit(NULL);
  10.     }
  11. }
  12. // 创建公共区
  13. struct msg{
  14.     int num;
  15.     struct msg *next;
  16. };
  17. struct msg *head = NULL;
  18. // 创建互斥量,初始化
  19. pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
  20. // 创建条件变量,初始化
  21. pthread_cond_t has_data = PTHREAD_COND_INITIALIZER;
  22. void* producer(void* arg)
  23. {
  24.     int i = 0;
  25.     while(1){
  26.         struct msg *p = malloc(sizeof(struct msg));
  27.         // 生产数据
  28.         p->num = ++i;
  29.         p->next = NULL;
  30.         printf("product: %d\n", p->num);
  31.         
  32.         // 将数据保存到公共区
  33.         pthread_mutex_lock(&mutex);
  34.         p->next = head;
  35.         head = p;
  36.         pthread_mutex_unlock(&mutex);
  37.         // 通知消费者
  38.         pthread_cond_signal(&has_data);
  39.         sleep(rand() % 3);
  40.     }
  41.     return NULL;
  42. }
  43. void* consumer(void* arg)
  44. {
  45.     while(1){
  46.         struct msg *mp;
  47.         // 加锁互斥量
  48.         pthread_mutex_lock(&mutex);
  49.         // 判断条件是否满足
  50.         while (head==NULL)  // 注意 while 循环才可以解决多消费者抢锁的问题
  51.         {   // 阻塞等待, 解锁
  52.             pthread_cond_wait(&has_data, &mutex);
  53.         }   // 返回值, 重新加锁
  54.         mp = head;
  55.         head = mp->next;
  56.         // 操作公共区结束, 立即解锁
  57.         pthread_mutex_unlock(&mutex);
  58.         printf("consumer:%d\n", mp->num);
  59.         free(mp);
  60.         sleep(rand() % 3);
  61.     }
  62.    
  63.     return NULL;
  64. }
  65. int main()
  66. {
  67.     int ret;
  68.     pthread_t pid1, pid2, cid1, cid2, cid3;
  69.     srand(time(NULL));
  70.    
  71.     ret = pthread_create(&pid1, NULL, producer, NULL);
  72.     if(ret!=0)
  73.         err_thread(ret, "pthread_create producer:");
  74.     ret = pthread_create(&pid2, NULL, producer, NULL);
  75.     if(ret!=0)
  76.         err_thread(ret, "pthread_create producer:");
  77.    
  78.     ret = pthread_create(&cid1, NULL, consumer, NULL);
  79.     if(ret!=0)
  80.         err_thread(ret, "pthread_create consumer:");
  81.     ret = pthread_create(&cid2, NULL, consumer, NULL);
  82.     if(ret!=0)
  83.         err_thread(ret, "pthread_create consumer:");
  84.     ret = pthread_create(&cid3, NULL, consumer, NULL);
  85.     if(ret!=0)
  86.         err_thread(ret, "pthread_create consumer:");
  87.    
  88.     pthread_join(pid1, NULL);
  89.     pthread_join(pid2, NULL);
  90.     pthread_join(cid1, NULL);
  91.     pthread_join(cid2, NULL);
  92.     pthread_join(cid3, NULL);
  93.     return 0;
  94. }
复制代码
3.4 信号量 semaphore

  信号量广泛用于进程或线程间的同步和互斥,信号量本质上是一个非负的整数计数器,它被用来控制对公共资源的访问。编程时可根据操作信号量值的结果判断是否对公共资源具有访问的权限,当信号量值大于 0 时,则可以访问,否则将阻塞
  1. #include <semaphore.h>
  2. // 创建一个信号量并初始化它的值。一个无名信号量在被使用前必须先初始化。
  3. // pshared 0:线程同步; 1: 进程同步
  4. // value: 信号量的初值
  5. // 成功返回0, 失败返回-1, 设置errno
  6. int sem_init(sem_t *sem, int pshared, unsigned int value);
  7. // 删除 sem 标识的信号量。
  8. int sem_destroy(sem_t *sem);
  9. // 将信号量的值减 1。操作前,先检查信号量(sem)的值是否为 0,若信号量为 0,此函数会阻塞,直到信号量大于 0 时才进行减 1 操作。
  10. int sem_wait(sem_t *sem);
  11. // 以非阻塞的方式来对信号量进行减 1 操作。
  12. // 若操作前,信号量的值等于 0,则对信号量的操作失败,函数立即返回。
  13. int sem_trywait(sem_t *sem);
  14. // 限时尝试将信号量的值减 1
  15. // abs_timeout:绝对时间
  16. int sem_timedwait(sem_t *sem, const struct timespec *abs_timeout);
  17. // 将信号量的值加 1 并发出信号唤醒等待线程(sem_wait())。
  18. int sem_post(sem_t *sem);
  19. // 获取 sem 标识的信号量的值,保存在 sval 中。
  20. int sem_getvalue(sem_t *sem, int *sval);
复制代码
   一个示例代码
  1. #include <stdlib.h>
  2. #include <unistd.h>
  3. #include <stdio.h>
  4. #include <semaphore.h>
  5. #include <pthread.h>
  6. #define NUM 5
  7. int queue[NUM];
  8. sem_t blank_number, product_number;
  9. // 消费者
  10. void* consumer(void *arg)
  11. {
  12.     int i = 0;
  13.     while(1)
  14.     {
  15.         sem_wait(&product_number);   // 产品数量-- (0则阻塞)
  16.         printf("Consume:%d\n", queue[i]);
  17.         queue[i] = 0;
  18.         sem_post(&blank_number);     // 空格数量++
  19.         i = (i+1) % NUM;
  20.         sleep(rand() % 6);
  21.     }
  22. }
  23. // 生产者
  24. void* producer(void *arg)
  25. {
  26.     int i = 0;
  27.     int number = 0;
  28.     while(1)
  29.     {
  30.         sem_wait(&blank_number);    // 空闲数量-- (0则阻塞)
  31.         queue[i] = ++number;
  32.         printf("Produce:%d\n", number);
  33.         sem_post(&product_number);  // 产品数量++
  34.         i = (i+1) % NUM;
  35.         sleep(rand() % 2);
  36.     }
  37. }
  38. int main()
  39. {
  40.     pthread_t pid, cid;
  41.     sem_init(&blank_number, 0, NUM);     // 初始化空闲区域
  42.     sem_init(&product_number, 0, 0);     // 初始化产品数量
  43.     pthread_create(&pid, NULL, producer, NULL);
  44.     pthread_create(&cid, NULL, consumer, NULL);
  45.     pthread_join(pid, NULL);
  46.     pthread_join(cid, NULL);
  47.     sem_destroy(&blank_number);
  48.     sem_destroy(&product_number);
  49.     return 0;
  50. }
复制代码
 

来源:https://www.cnblogs.com/stux/p/17812681.html
免责声明:由于采集信息均来自互联网,如果侵犯了您的权益,请联系我们【E-Mail:cb@itdo.tech】 我们会及时删除侵权内容,谢谢合作!

举报 回复 使用道具