百度360必应搜狗淘宝本站头条
当前位置:网站首页 > 优雅编程 > 正文

多线程2——线程函数(linux)(多线程编程linux)

sinye56 2024-11-06 12:03 5 浏览 0 评论

1.线程创建函数 pthread_create

函数原型:

#include <pthread.h>
 
int pthread_create (pthread_t *__restrict __newthread,
			   const pthread_attr_t *__restrict __attr,
			   void *(*__start_routine) (void *),
			   void *__restrict __arg)

函数个参数含义如下:

  • __newthread : 该参数是一个指针,当线程创建成功时,用来返回创建的线程ID。
  • __attr : 该参数用于指定线程的属性,NULL表示使用默认属性。
  • __start_routine : 该参数是一个函数指针,指向线程创建后要调用的函数。这个被线程调用的函数也称为线程函数。
  • __arg :该参数指向传递给线程函数的参数。

注意:线程创建成功时,pthread_create函数返回0,若不为0,则说明线程创建失败。

线程创建代码示例

(1)不传递参数

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

int * thread(void *arg)
{
    pthread_t newthid;

    newthid = pthread_self();
    printf("this is a new thread, thread ID = %u\n", (unsigned int)newthid);

    return NULL;
}

int main(int argc, char **argv)
{
    pthread_t thid;

    printf("main thread, ID is %u\n", (unsigned int)pthread_self());

    if (pthread_create(&thid, NULL, (void *)thread, NULL) != 0) {
        printf("thread creation failed\n");
        exit(1);
    }

     sleep(1);  // 休眠1秒
    
    // pthread_exit作用
    // 1.显式地退出一个线程
    // 2.如果主线程在其创建的子线程之前结束,使用pthread_exit,进程不会结束,
    //    也意味着子线程可以继续执行;如果不使用pthread_exit,进程会结束
    //    子线程会被迫终止。
    // 3.该函数是在线程完成工作后无需继续存在时被调用,也意味着其后面的语句不被执行。
    pthread_exit(NULL);

    // 该语句位于pthread_exit后,不会被执行!
    printf("main end...");

    return 0;
}

编译并运行程序
baohua@node1:~$ gcc createthread.c -lpthread -o main
baohua@node1:~$ ./main
main thread, ID is 2957645568
this is a new thread, thread ID = 2949265152

(2)只有一个参数

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

void * thread(void *arg)
{
    pthread_t newthid;

    newthid = pthread_self();
    printf("this is a new thread, thread ID = %u\n", (unsigned int)newthid);

    // 获取父线程创建子线程时传递的参数
    int index = *((int *)arg);
    printf("the value of index is: %d\n", index);

    return NULL;
}

int main(int argc, char **argv)
{
    pthread_t thid;

    printf("main thread, ID is %u\n", (unsigned int)pthread_self());

    int index = 1;

    if (pthread_create(&thid, NULL, thread, (void *)&index) != 0) {
        printf("thread creation failed\n");
        exit(1);
    }

    // pthread_exit作用
    // 1.显式地退出一个线程
    // 2.如果主线程在其创建的子线程之前结束,使用pthread_exit,进程不会结束,
    //    也意味着子线程可以继续执行;如果不使用pthread_exit,进程会结束
    //    子线程会被迫终止。
    // 3.该函数是在线程完成工作后无需继续存在时被调用,也意味着其后面的语句不被执行。
    pthread_exit(NULL);

    // 该语句位于pthread_exit后,不会被执行!
    printf("main end...");

    return 0;
}

编译并运行程序
baohua@node1:~$ gcc createthread.c -lpthread -o main
baohua@node1:~$ ./main
main thread, ID is 1917601536
this is a new thread, thread ID = 1909221120
the value of index is: 1

(3)多个参数

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

struct thread_data
{
    int thread_id;
    char *message;
};

void *thread(void *arg)
{
    pthread_t newthid;

    newthid = pthread_self();
    printf("this is a new thread, thread ID = %u\n", (unsigned int)newthid);

    // 获取父线程创建子线程时传递的参数
    struct thread_data *my_data;
    my_data = (struct thread_data *)arg;
    printf("Thread ID: %d\n", my_data->thread_id);
    printf("Message: %s\n", my_data->message);

    return NULL;
}

int main(int argc, char **argv)
{
    pthread_t thid;

    printf("main thread, ID is %u\n", (unsigned int)pthread_self());

  // 借助结构体传参
    struct thread_data td;
    td.thread_id = 1;
    td.message = "This is message";

    if (pthread_create(&thid, NULL, thread, (void *)&td) != 0)
    {
        printf("thread creation failed\n");
        exit(1);
    }

    // pthread_exit作用
    // 1.显式地退出一个线程
    // 2.如果主线程在其创建的子线程之前结束,使用pthread_exit,进程不会结束,
    //    也意味着子线程可以继续执行;如果不使用pthread_exit,进程会结束
    //    子线程会被迫终止。
    // 3.该函数是在线程完成工作后无需继续存在时被调用,也意味着其后面的语句不被执行。
    pthread_exit(NULL);

    // 该语句位于pthread_exit后,不会被执行!
    printf("main end...");

    return 0;
}

编译并运行程序
baohua@node1:~$ gcc createthread.c -lpthread -o main
baohua@node1:~$ ./main
main thread, ID is 224532224
this is a new thread, thread ID = 216151808
Thread ID: 1
Message: This is message

2.线程终止

Linux下有三种方法使线程终止(不终止进程):

  • 线程函数执行到尾部,或使用return从线程函数返回
  • 线程可以被同一进程中的其他线程取消
  • 通过pthread_exit函数使线程退出

注意:在任何线程中调用exit函数,都会终止进程,进而导致所有线程终止。

线程终止最重要的问题是释放临界资源

相关推荐

Linux两种光驱自动挂载的方法

环境:CentOS6.4西昆云服务器方式一修改fstab文件/etc/fstab是系统保存文件系统信息?静态文件,每一行描述一个文件系统;系统每次启动会读取此文件信息以确定需要挂载哪些文件系统。参...

linux系统运维,挂载和分区概念太难?在虚机下操作一次全掌握

虚拟机的好处就是可以模拟和学习生产环境的一切操作,假如我们还不熟悉磁盘操作,那先在虚机环境下多操作几次。这次来练习下硬盘扩容操作。虚拟机环境:centos8vm11linux设备命名规则在linux中...

Linux 挂载 NFS 外部存储 (mount 和 /etc/fstab)

mount:手工挂载,下次重启需再重新挂载,操作命令:mount-tnfs-ooptionsserver:/remote/export/local/directory上面命令中,本地目录...

在Linux中如何设置自动挂载特定文件系统(示例)

Linux...

Linux环境中的绑定挂载(bind mount)

简介:Linux中的mount命令是一个特殊的指令,主要用于挂载文件目录。而绑定挂载(bindmount)命令更为特别。mount的bind选项将第一个目录克隆到第二个。一个目录中的改变将会在...

Linux挂载CIFS共享 临时挂载 1. 首先

如何解决服务器存储空间不足的问题?大家好,欢迎回来。在上一期视频中,我为大家介绍了如何利用Linux挂载来扩容服务器存储空间。这一期视频,我将以Linux为例,教大家如何进行扩容。群辉使用的是Linu...

Linux 硬盘挂载(服务器重启自动挂载)

1、先查看目前机器上有几块硬盘,及已挂载磁盘:fdisk-l能够查看到当前主机上已连接上的磁盘,以及已经分割的磁盘分区。(下面以/dev/vdb磁盘进行分区、挂载为例,挂载点设置为/data)df...

linux 挂载磁盘

在Linux中挂载硬盘的步骤如下:...

笨小猪教您Linux磁盘挂载

本教程针对Linux系统比较熟悉或者想学习Linux基础的用户朋友,本教程操作起来比较傻瓜式,跟着步骤就会操作,本文使用的工具是XShell同时多多注意空格(文中会有提示)。【问答】什么是磁盘挂载?答...

Linux 磁盘挂载和docker安装命令

本篇给大家介绍Linux磁盘挂载和docker安装的相关内容,Linux服务器的操作是一个手熟的过程,一些不常用的命令隔断时间就忘记了,熟话说好记性不如烂笔头,还需在平时的工作中多练习记录。...

Linux设置开机自动挂载分区

有时候,我们在安装完Linux系统之后,可能在使用过程中添加硬盘或者分区进行使用,这时候就需要手动把磁盘分区挂载到某个路径,但是开机之后就会消失,需要重新挂载,非常麻烦,那么我们应该如何设置开机自动挂...

在linux挂载一个新硬盘的完整步骤

以下是在Linux中挂载新原始磁盘的完整步骤,包括分区、创建文件系统以及使用UUID在/etc/fstab中启动时挂载磁盘:将新的原始磁盘连接到Linux系统并打开电源。运行以下命令,...

Linux系统如何挂载exFAT分区

简介:Linux系统中不能像Windows系统那样自动识别加载新设备,需要手动识别,手动加载。Linux中一切皆文件。文件通过一个很大的文件树来组织,文件树的根目录是:/,从根目开始录逐级展开。这些文...

Linux系统挂载硬盘

fdisk-l查看可挂载的磁盘都有哪些df-h查看已经挂载的磁盘...

WSL2发布,如何在Win10中挂载Linux文件系统

WSL2是最新版本的架构,它为Windows子系统提供支持,使其能够在Windows上运行ELF64Linux二进制文件。通过最近的更新,它允许使用Linux文件系统访问存储在硬盘中的文件。如果你...

取消回复欢迎 发表评论: