gpt4 book ai didi

c - 错误 : incomplete type for struct sembuf

转载 作者:太空宇宙 更新时间:2023-11-04 06:59:45 25 4
gpt4 key购买 nike

我正在编写一个程序,该程序使用信号量和信号量缓冲区在并行编程中进行互斥。这是导致错误的代码位以及使用 sembuf 指针的信号和等待函数。

#include <sys/ipc.h>
#include <sys/shm.h>
#include <stdlib.h>
#include <unistd.h>
#include <semaphore.h>
#include <pthread.h>
#define NSEMS 1


// semaphore buffers
static struct sembuf OP = {0,-1,0};
static struct sembuf OV = {0,1,0};
struct sembuf *P =&OP;
struct sembuf *V =&OV;


// Wait() function for semaphore
int POP()
{
int status;
status = semop(sem_id, P,1);
return status;
}

// Signal() function for semaphore
int VOP()
{
int status;
status = semop(sem_id, V,1);
return status;

这是我收到的错误:

sem.c:17:15: error: variable ‘OP’ has initializer but incomplete type
static struct sembuf OP = {0,-1,0};
^
sem.c:17:15: warning: excess elements in struct initializer [enabled by default]
sem.c:17:15: warning: (near initialization for ‘OP’) [enabled by default]
sem.c:17:15: warning: excess elements in struct initializer [enabled by default]
sem.c:17:15: warning: (near initialization for ‘OP’) [enabled by default]
sem.c:17:15: warning: excess elements in struct initializer [enabled by default]
sem.c:17:15: warning: (near initialization for ‘OP’) [enabled by default]

我收到 OV 结构的相同错误,但我不明白为什么。非常感谢任何帮助。

最佳答案

在使用类型之前,您需要包含必要的 header ...

在你的情况下:

#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/sem.h>

关于c - 错误 : incomplete type for struct sembuf,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40075782/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com