繁体   English   中英

Sizeof(Struct sem_t)得到错误:'sizeof'对不完整类型'struct sem_t'的无效应用

[英]Sizeof(Struct sem_t) gets error: invalid application of ‘sizeof’ to incomplete type ‘struct sem_t’

我相信,我正在尝试获取sem_t结构的大小,该结构是Linux的信号量结构,但是当我尝试动态分配sem_t结构的数组时,似乎无法确定它的大小。

到目前为止,这是我的代码(我仍在构建main ...我知道我仍然需要清理/关闭线程和信号量以及其他任何内容):

#define _MULTI_THREADED
#include <math.h>
#include <unistd.h>     /* Symbolic Constants */
#include <sys/types.h>  /* Primitive System Data Types */
#include <errno.h>      /* Errors */
#include <stdio.h>      /* Input/Output */
#include <stdlib.h>     /* General Utilities */
#include <pthread.h>    /* POSIX Threads */
#include <string.h>     /* String handling */
#include <semaphore.h>  /* Semaphore */

//#define N 5
#define THINKING 0
#define HUNGRY 1
#define EATING 2
//#define LEFT (ph_num+4)%N
//#define RIGHT (ph_num+1)%N

sem_t mutex;
//sem_t S[N];

void * philospher(void *num);
void take_fork(int);
void put_fork(int);
void test(int);

//int state[N];
int *state;

//int phil_num[N]={0,1,2,3,4};
int N=0;
sem_t *S;

int getLeft(int phNum)
{
    return (phNum+4)%N;
}

int getRight(int phNum)
{
    return (phNum+1)%N;
}

void *philospher(void *num)
{
    while(1)
    {
        int *i = num;
        sleep(1);
        take_fork(*i);
        sleep(0);
        put_fork(*i);
    }
}

void take_fork(int ph_num)
{
    sem_wait(&mutex);
    state[ph_num] = HUNGRY;
    printf("Philosopher %d is Hungry\n",ph_num+1);
    test(ph_num);
    sem_post(&mutex);
    sem_wait(&S[ph_num]);
    sleep(1);
}

void test(int ph_num)
{
    if (state[ph_num] == HUNGRY && state[getLeft(ph_num)] != EATING && state[getRight(ph_num)] != EATING)
    {
        state[ph_num] = EATING;
        sleep(2);
        printf("Philosopher %d takes fork %d and %d\n",ph_num+1,getLeft(ph_num)+1,ph_num+1);
        printf("Philosopher %d is Eating\n",ph_num+1);
        sem_post(&S[ph_num]);
    }
}

void put_fork(int ph_num)
{
    sem_wait(&mutex);
    state[ph_num] = THINKING;
    printf("Philosopher %d putting fork %d and %d down\n",ph_num+1,getLeft(ph_num)+1,ph_num+1);
    printf("Philosopher %d is thinking\n",ph_num+1);
    test(getLeft(ph_num));
    test(getRight(ph_num));
    sem_post(&mutex);
}


int main(int argc, char *argv[])
{
    if(argc<2)
    {
        printf("Come on, now, we need a number for the number of philosphers we're going to have over for dinner.");
        return 0;
    }
    N = atoi(argv[1]);
    S=
    //S = sem_t[N];
    S=(struct sem_t *)malloc(N*sizeof(struct sem_t));
    state = malloc(N*sizeof(int));
       int i;
    pthread_t thread_id[N];
    sem_init(&mutex,0,1);
    for(i=0;i<N;i++)
        sem_init(&S[i],0,0);
    for(i=0;i<N;i++)
    {
        pthread_create(&thread_id[i],NULL,philospher,i);//&phil_num[i]);
        printf("Philosopher %d is thinking\n",i+1);
    }
    for(i=0;i<N;i++)
        pthread_join(thread_id[i],NULL);

}

这是因为sem_t不是结构。 请改用sizeof(sem_t)

 S = malloc(N*sizeof(sem_t));

或者,我认为更好

 S = malloc(N*sizeof(*S));

我更喜欢后者,因为它避免了*S类型的重复。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM