0

pthreads を使用して周期的な実行スケジュールを実装する小さな単純なプログラムを作成しています。最初に pthread を使用せずにプログラムを作成し、現在 pthread_create にパラメーターを正しく渡そうとしています。引数は次のとおりです。

int pthread_create(pthread_t *thread, const pthread_attr_t *attr, void *(*start_routine) (void *), void *arg);

しかし、スレッドを ttable(スケジュール) に送信すると、問題が発生します。スレッドを使用しているので、使用していなくても void* x パラメーターを追加しました (このパラメーターは必要ですか?) スケジュールをパラメーターなしのままにして、pthread_create の最後の引数として NULL を渡してみました。私のエラーは現在: エラー: 'void ( * )( )' から 'void ( * )(void*)' への変換が無効です [-fpermissive] }; ^

コードは次のとおりです。

#include <ctype.h>
#include <unistd.h>
#include <sys/times.h>
#include <pthread.h>

#define SLOTX   6
#define CYCLEX  4
#define SLOT_T  1000    //1 second slot time
#define NUM_THREADS 3

int tps;
int i;
int j;
int rc;
int cycle = 0;
int slot = 0;
struct tms n;

void one(void* x){
        printf("Task 1 running\n");
        sleep(1);
}

void two(void* x){
        printf("Task 2 running\n");
        sleep(1);
}

void three(void* x){
        printf("Task 3 running\n");
        sleep(1);
}

void burn(void* x){
        printf("Burn cycle\n");
        sleep(1);
}

void (*ttable[SLOTX][CYCLEX])(void* x) = {
        {one,   one,    two,    two},
        {three, three,  three,  three},
        {two,   two,    one,    one},
        {burn,  two,    two,    burn},
        {three, three,  three,  three},
        {one,   one,    two,    two}
};

main(){
        tps = sysconf(_SC_CLK_TCK);
        pthread_t thread[NUM_THREADS];
        printf("clock ticks/sec = %d\n\n", tps);
        while(1){
                printf("Starting new hyperperiod\n");
                for(slot = 0; slot<SLOTX; slot++){
                        printf("Starting new frame\n");
                        for(cycle = 0; cycle<CYCLEX; cycle++){
                                for(i = 0; i<NUM_THREADS; i++){
                                        rc = pthread_create(&thread[i], NULL, (*ttable[slot][cycle]), *(void*)j);
                                }
                        }
                }
        }

}
4

2 に答える 2