温馨提示×

linux c语言如何创建线程

小亿
81
2024-12-07 10:27:37
栏目: 智能运维

在 Linux 中,使用 C 语言创建线程可以通过以下两种方法实现:

  1. 使用 POSIX 线程库(pthread)

首先,需要包含头文件 pthread.h。然后,通过调用 pthread_create() 函数来创建线程。这是一个简单的示例:

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

void *my_thread_function(void *arg) {
    printf("Hello from the new thread!\n");
    pthread_exit(NULL);
}

int main() {
    pthread_t thread_id;
    int rc;

    rc = pthread_create(&thread_id, NULL, my_thread_function, NULL);
    if (rc != 0) {
        perror("Failed to create thread");
        exit(EXIT_FAILURE);
    }

    printf("Hello from the main thread!\n");

    // 等待线程结束
    pthread_join(thread_id, NULL);

    return 0;
}
  1. 使用系统调用 clone()

clone() 系统调用是 Linux 中创建线程的另一种方法。首先,需要包含头文件 sys/types.hsys/wait.h。然后,通过调用 clone() 函数来创建线程。这是一个简单的示例:

#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/wait.h>
#include <unistd.h>

int my_thread_function(void *arg) {
    printf("Hello from the new thread!\n");
    _exit(0);
}

int main() {
    pid_t pid = clone(my_thread_function, NULL, CLONE_VM | CLONE_FS | CLONE_FILES | CLONE_SIGHAND | CLONE_THREAD | CLONE_SYSVSEM, NULL);
    if (pid < 0) {
        perror("Failed to create thread");
        exit(EXIT_FAILURE);
    }

    printf("Hello from the main thread!\n");

    // 等待线程结束
    waitpid(pid, NULL, 0);

    return 0;
}

这两种方法都可以用于在 Linux 中使用 C 语言创建线程。POSIX 线程库(pthread)是现代 Linux 系统中更常用的方法,因为它提供了更丰富的功能和更好的可移植性。

0