LInux下Posix的传统线程示例

简介: LInux下Posix的传统线程示例

简介


Linux线程是需要连接pthreat库,线程的使用比进程更灵活,需要注意的是线程间的互斥,或者说是资源共享问题。


C++11之后,C++标准库也引入了线程,并且使用非常方便,以后再介绍,这里先发一个简单的线程示例代码。


代码

#include <stdio.h>
#include <pthread.h>
#include <string.h>
#include <stdlib.h>


char message[32]={"Hello world!"};
void *thread_function(void *arg);


void *thread_function(void *arg)
{
    printf("thread_fonction is runing , argument is %s\n", (char *)arg);
    strcpy(message, "marked by thread");

    printf("thread_function finished\n");
    pthread_exit("Thank you for the cpu time\n"); 
}


int
main(int argc, char **argv)
{   
    pthread_t a_thread;
    void *thread_result;

    if(pthread_create(&a_thread, NULL, thread_function, (void*)message ) < 0)
  {
    perror("pthread_create error:");
    exit(-1);
  }
  
    printf("writing for the thread to finish\n");
    if(pthread_join(a_thread, &thread_result) < 0)
    {
        perror("pthread_join error:");
        exit(0);
    }

    printf("in main, thread is exist, marked msg: %s \n", message);

    exit(0);
}


编译


编译的时候,需要加上pthread线程库

gcc pthreat.c -o test -lpthread


运行


程序启动后,主程序中,创建线程,然后等待线程退出,在线程函数里,会把message字符串修改掉。

./test 
in main, writing for the thread to finish
in thread, thread_fonction is runing , argument is Hello world!
in thread, thread_function finished
in main, thread is exist, marked msg: marked by thread 
目录
相关文章
|
8天前
|
Unix Linux
Linux | Rsync 命令:16 个实际示例(下)
Linux | Rsync 命令:16 个实际示例(下)
22 3
Linux | Rsync 命令:16 个实际示例(下)
|
14天前
|
安全 Linux Shell
Linux | Rsync 命令:16 个实际示例(上)
Linux | Rsync 命令:16 个实际示例(上)
45 0
Linux | Rsync 命令:16 个实际示例(上)
|
21天前
|
资源调度 Linux 调度
Linux C/C++之线程基础
这篇文章详细介绍了Linux下C/C++线程的基本概念、创建和管理线程的方法,以及线程同步的各种机制,并通过实例代码展示了线程同步技术的应用。
16 0
Linux C/C++之线程基础
|
2月前
|
Linux Shell
Linux 中 Tail 命令的 9 个实用示例
Linux 中 Tail 命令的 9 个实用示例
81 6
Linux 中 Tail 命令的 9 个实用示例
|
25天前
|
安全 Linux
Linux线程(十一)线程互斥锁-条件变量详解
Linux线程(十一)线程互斥锁-条件变量详解
|
3月前
|
存储 设计模式 NoSQL
Linux线程详解
Linux线程详解
|
3月前
|
存储 安全 Unix
并发编程基础:使用POSIX线程(pthread)进行多线程编程。
并发编程基础:使用POSIX线程(pthread)进行多线程编程。
75 0
|
3月前
|
存储 Linux
【linux】【系统】启动参数配置的示例
【linux】【系统】启动参数配置的示例
33 0
|
3月前
|
负载均衡 Linux 调度
在Linux中,进程和线程有何作用?
在Linux中,进程和线程有何作用?
|
3月前
|
缓存 Linux C语言
Linux中线程是如何创建的
【8月更文挑战第15天】线程并非纯内核机制,由内核态与用户态共同实现。