pthread_create示例
时间: 2023-07-07 15:43:19 浏览: 57
下面是一个简单的pthread_create示例,它创建了一个新线程,该线程会输出一条消息并退出:
```c
#include <stdio.h>
#include <pthread.h>
void *thread_func(void *arg) {
printf("Hello from thread!\n");
pthread_exit(NULL);
}
int main() {
pthread_t tid;
int ret = pthread_create(&tid, NULL, thread_func, NULL);
if (ret != 0) {
printf("Failed to create thread\n");
return 1;
}
printf("Hello from main thread!\n");
pthread_join(tid, NULL);
return 0;
}
```
这个程序会输出两条消息,一条来自主线程,另一条来自新线程。主线程在创建新线程后会立即输出消息,而新线程在启动后会输出自己的消息并退出。最后,主线程会等待新线程结束后再退出。
相关问题
pthread_create pthread_detach
这两个函数都是 POSIX 线程库中的函数,用于创建和分离线程。
`pthread_create` 函数用于创建一个新的线程。它接收四个参数:指向线程标识符的指针、线程属性、线程函数的地址以及传递给线程函数的参数。通过调用该函数,可以创建新的线程并开始执行指定的线程函数。
示例代码:
```c
#include <pthread.h>
void* thread_function(void* arg) {
// 线程函数的逻辑
return NULL;
}
int main() {
pthread_t thread;
int result = pthread_create(&thread, NULL, thread_function, NULL);
if (result != 0) {
// 线程创建失败的处理逻辑
}
// 主线程的逻辑
return 0;
}
```
`pthread_detach` 函数用于将一个线程设置为分离状态。分离状态的线程结束后会自动释放资源,无需由其他线程调用 `pthread_join` 函数来等待其结束。通常情况下,只有当线程不需要返回结果时才会将其设置为分离状态。
示例代码:
```c
#include <pthread.h>
void* thread_function(void* arg) {
// 线程函数的逻辑
return NULL;
}
int main() {
pthread_t thread;
int result = pthread_create(&thread, NULL, thread_function, NULL);
if (result != 0) {
// 线程创建失败的处理逻辑
}
result = pthread_detach(thread);
if (result != 0) {
// 线程分离失败的处理逻辑
}
// 主线程的逻辑
return 0;
}
```
希望能对你有所帮助!如果还有其他问题,请继续提问。
详细说明下 pthread_mutex_init pthread_cond_init pthread_create pthread_cond_signal pthread_mutex_unlock pthread_mutex_lock ,怎么使用,给出demo
pthread_mutex_init: 用于初始化互斥锁(mutex),将互斥锁设置为默认属性。
```c
#include <pthread.h>
int pthread_mutex_init(pthread_mutex_t *mutex, const pthread_mutexattr_t *attr);
```
pthread_cond_init: 用于初始化条件变量(condition variable),将条件变量设置为默认属性。
```c
#include <pthread.h>
int pthread_cond_init(pthread_cond_t *cond, const pthread_condattr_t *attr);
```
pthread_create: 用于创建一个新的线程,并执行指定的函数。
```c
#include <pthread.h>
int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine)(void*), void *arg);
```
pthread_cond_signal: 用于唤醒一个等待在条件变量上的线程。
```c
#include <pthread.h>
int pthread_cond_signal(pthread_cond_t *cond);
```
pthread_mutex_unlock: 用于解锁互斥锁,允许其他线程获取该互斥锁。
```c
#include <pthread.h>
int pthread_mutex_unlock(pthread_mutex_t *mutex);
```
pthread_mutex_lock: 用于加锁互斥锁,如果互斥锁已经被锁定,则调用线程会阻塞直到互斥锁被解锁。
```c
#include <pthread.h>
int pthread_mutex_lock(pthread_mutex_t *mutex);
```
下面是一个使用这些函数的简单示例:
```c
#include <stdio.h>
#include <pthread.h>
pthread_mutex_t mutex;
pthread_cond_t cond;
int count = 0;
void* thread_func(void* arg) {
pthread_mutex_lock(&mutex);
// 检查条件是否满足
while (count < 10) {
// 等待条件变量被唤醒
pthread_cond_wait(&cond, &mutex);
}
// 条件满足,执行任务
printf("Thread: Count is now %d\n", count);
pthread_mutex_unlock(&mutex);
return NULL;
}
int main() {
pthread_t thread;
pthread_mutex_init(&mutex, NULL);
pthread_cond_init(&cond, NULL);
// 创建线程
pthread_create(&thread, NULL, thread_func, NULL);
// 模拟更新计数
for (int i = 0; i < 15; ++i) {
pthread_mutex_lock(&mutex);
count++;
// 每次更新计数后,唤醒等待的线程
if (count >= 10) {
pthread_cond_signal(&cond);
}
pthread_mutex_unlock(&mutex);
}
// 等待线程结束
pthread_join(thread, NULL);
pthread_mutex_destroy(&mutex);
pthread_cond_destroy(&cond);
return 0;
}
```
在上面的示例中,主线程更新一个计数器,当计数器达到10时,会通过条件变量唤醒等待的线程。等待的线程在条件满足时执行任务,并输出计数器的值。
阅读全文