树莓派学习系列 ——多线程pthread_create(,,,)

本文主要是记录一下树莓派的学习过程;以便以后复习使用。
文中有三个循环线程和一个main线程,其中thread3为控制线程,只要按下回车,循环全部结束。

#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <iostream>
using namespace std;
int a = 1;
void* thread1(void *args)//this is 
{
    int *flag = (int*)args;
    while(*flag)
    {

    }

    pthread_exit(NULL);
}
void* thread2(void *args)
{
    int *flag = (int*)args;
    while(*flag)
    {

    }
    pthread_exit(NULL);
}
void* thread3(void *args)
{       int *flag =(int*)args;
    if(getchar() == '\n')
    {
    *flag = 0;
    }
pthread_exit(NULL);
}
int main()
{   
    pthread_t tid1,tid2,tid3;
    int err; 
    void *result;
    int *open=&a;
    err = pthread_create(&tid1,NULL,thread1,open);
    err = pthread_create(&tid2,NULL,thread2,open);
    err = pthread_create(&tid3,NULL,thread3,open);
    while(*open);
    err = pthread_join(tid1,NULL);
    err = pthread_join(tid2,NULL);
    err = pthread_join(tid3,NULL);
    return 0;
}
posted @ 2017-08-28 14:43  GYT_Robot  阅读(140)  评论(0)    收藏  举报  来源