- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
<分区>
我整天都在研究这个程序,但我无法解决我的错误。我在互联网上搜索了足够的答案,但我不确定我做错了什么。我已经尝试了所有我能想到的方法来从我的代码中消除这些错误。我只需要让程序运行!
对于非常困惑的代码,我深表歉意。 C/C++ 真的不是我的强项。
这是我尝试运行时遇到的错误列表:
hotel.c: In function ‘int main(int, char**)’:
hotel.c:228:53: error: invalid conversion from ‘void* (*)()’ to ‘void* (*)(void*)’ [-fpermissive]
pthread_create(&receptionIn, NULL, Checkin, NULL);
In file included from hotel.c:1:0:
/usr/include/pthread.h:244:12: error: initializing argument 3 of ‘int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)’ [-fpermissive]
extern int pthread_create (pthread_t *__restrict __newthread,
hotel.c:229:55: error: invalid conversion from ‘void* (*)()’ to ‘void* (*)(void*)’ [-fpermissive]
pthread_create(&receptionOut, NULL, Checkout, NULL);
In file included from hotel.c:1:0:
/usr/include/pthread.h:244:12: error: initializing argument 3 of ‘int pthread_create(pthread_t*, const pthread_attr_t*, void* (*)(void*), void*)’ [-fpermissive]
extern int pthread_create (pthread_t *__restrict __newthread,
hotel.c:233:19: error: request for member ‘guest_id’ in ‘guests[t]’, which is of non-class type ‘pthread_t {aka long unsigned int}’
guests[t].guest_id = t;
hotel.c:234:19: error: request for member ‘room’ in ‘guests[t]’, which is of non-class type ‘pthread_t {aka long unsigned int}’
guests[t].room = 0;
hotel.c:235:19: error: request for member ‘guestCheckIn’ in ‘guests[t]’, which is of non-class type ‘pthread_t {aka long unsigned int}’
guests[t].guestCheckIn = 0;
hotel.c:236:19: error: request for member ‘guestCheckOut’ in ‘guests[t]’, which is of non-class type ‘pthread_t {aka long unsigned int}’
guests[t].guestCheckOut = 0;
hotel.c:237:28: error: request for member ‘hasRoom’ in ‘guests[t]’, which is of non-class type ‘pthread_t {aka long unsigned int}’
sem_init(guests[t].hasRoom, 0, 0);
hotel.c:238:28: error: request for member ‘checkedOut’ in ‘guests[t]’, which is of non-class type ‘pthread_t {aka long unsigned int}’
sem_init(guests[t].checkedOut, 0, 0);
第 233-238 行的错误似乎是相关错误,但我无法弄清楚是什么原因造成的。我试图将格式更改为...
客人[t]->guest_id = t;
...但是我得到了不同的错误。
我在这里四处寻找有帮助的答案,但找不到能充分解释它的答案。
请帮忙!
#include <pthread.h>
#include <semaphore.h>
#include <stdio.h>
#include <stdlib.h>
// Structure for tracking the status of a guest.
struct guest
{
// Variable for tracking which guest/thread this is.
int guest_id;
// Variable for tracking which room a guest is assigned.
int room;
// Variable for determining if a guest is ready to check in.
int guestCheckIn;
// Variable for determining if a guest is ready to check out.
int guestCheckOut;
// Semaphore for keeping track of whether the guest has a room.
sem_t hasRoom;
// Semaphore for keeping track of whether the guest is still at the hotel.
sem_t checkedOut;
};
struct guest guests[10];
// Array for tracking which rooms are available.
int rooms[5];
// Variable for keeping track of how many times the pool was used.
int poolUse = 0;
// Variable for keeping track of how many times the restaurant was used.
int restaurantUse = 0;
// Variable for keeping track of how many times the fitness center was used.
int fitnessCenterUse = 0;
// Variable for keeping track of how many times the business center was used.
int businessCenterUse = 0;
// Semaphore for tracking if the check-in receptionist is busy.
sem_t checkInBusy;
// Variable for determining if a guest wants to check in.
sem_t readyForCheckIn;
// Semaphore for tracking if the check-out receptionist is busy.
sem_t checkOutBusy;
// Variable for determining if a guest wants to check out.
sem_t readyForCheckOut;
// Semaphore for tracking how many available rooms there are.
sem_t numRooms;
/**
* This procedure
**/
void *Checkin()
{
while(true)
{
// Wait if receptionist is already busy.
sem_wait(&checkInBusy);
// Wait for a guest to be ready to check in.
sem_wait(&readyForCheckIn);
// Variable for storing index of available guest.
int readyGuest = 11;
// Find a guest that is ready for check in.
for(int x = 0; x < 10; x++)
{
if(guests[x].guestCheckIn == 1 && readyGuest > x)
{
readyGuest = x;
}
}
printf("The check-in reservationist greets Guest %d\n", readyGuest);
// Variable for storing the available room.
int available = 0;
// Find the guest an available room.
for(int y = 0; y < 5; y++)
{
if(rooms[y] == 0 && available != 0)
{
available = y;
}
}
// Grant the room to the guest.
printf("Assign room %d to Guest %d\n", available, readyGuest);
guests[readyGuest].room = available;
rooms[available] = readyGuest;
sem_post(&guests[readyGuest].hasRoom);
// Guest is now checked in and no longer needs to be ready to do so.
guests[readyGuest].guestCheckIn = 0;
// Increment the corresponding semaphore to indicate that check-in is no longer busy.
sem_post(&checkInBusy);
}
}
/**
*
**/
void *Checkout()
{
while(true)
{
// Wait if receptionist is already busy.
sem_wait(&checkOutBusy);
// Wait for a guest to be ready to check out.
sem_wait(&readyForCheckOut);
// Variable for storing index of available guest.
int readyGuest = 11;
// Find a guest that is ready for check out.
for(int x = 0; x < 10; x++)
{
if(guests[x].guestCheckOut == 1 && readyGuest > x)
{
readyGuest = x;
}
}
// Free up the room the guest occupied.
rooms[guests[readyGuest].room] = 0;
printf("The check-out greets Guest %d and receives the key from room %d\n", readyGuest, guests[readyGuest].room);
printf("Calculate the balance for Guest %d\n", readyGuest);
printf("Receive $1 from Guest %d and complete the check-out\n", readyGuest);
// Guest is now checked out and no longer needs to be ready to do so.
guests[readyGuest].guestCheckOut = 0;
// Increment the corresponding semaphore to indicate that check-out is no longer busy.
sem_post(&checkOutBusy);
}
}
/**
* A guest will attempt to reserve a room but will wait until there is an available room before approaching the receptionist.
* If a room is available, they will approach the check-in, get a room and then proceed to do their hotel thing. Once
* finished, the guest will go to the check out and return the room key.
**/
void *Guest(void *threadarg)
{
struct guest *guest_data;
// Wait if there are no available rooms.
sem_wait(&numRooms);
// Declare guest is ready to be checked in and increment the corresponding semaphore.
printf("Guest %d waits for check-in...", guest_data->guest_id);
guest_data->guestCheckIn = 1;
sem_post(&readyForCheckIn);
// Wait until a room is assigned.
sem_wait(&guest_data->hasRoom);
printf("Guest %d receives Room %d and completes check in\n", guest_data->guest_id, guest_data->room);
// Guest goes to do hotel stuff!
// Generate a random number between 0-3.
int r = rand() % 4;
// Go to pool!
if(r == 0)
{
printf("Go to hotel swimming pool\n");
poolUse++;
}
// Go to restaurant!
if(r == 1)
{
printf("Go to hotel restaurant\n");
restaurantUse++;
}
// Go to fitness center!
if(r == 2)
{
printf("Go to hotel fitness center\n");
fitnessCenterUse++;
}
// Go to business center!
if(r == 4)
{
printf("Go to hotel business center\n");
businessCenterUse++;
}
// Declare a guest is ready to be checked out and increment the corresponding semaphore.
guest_data->guestCheckOut = 1;
sem_post(&readyForCheckOut);
// Wait until a guest is completely checked out.
sem_wait(&guest_data->checkedOut);
printf("Guest %d receives the total balance of $1\n", guest_data->guest_id);
printf("Guest %d makes a payment\n", guest_data->guest_id);
}
/**
* The main procedure creates the threads for the
**/
int main(int argc, char *argv[])
{
pthread_t guests[10];
pthread_t receptionIn;
pthread_t receptionOut;
sem_init(&checkInBusy, 0, 1);
sem_init(&readyForCheckIn, 0, 0);
sem_init(&checkOutBusy, 0, 1);
sem_init(&readyForCheckOut, 0, 0);
sem_init(&numRooms, 0, 5);
pthread_create(&receptionIn, NULL, Checkin, NULL);
pthread_create(&receptionOut, NULL, Checkout, NULL);
for(int t = 0; t < 10; t++)
{
guests[t].guest_id = t;
guests[t].room = 0;
guests[t].guestCheckIn = 0;
guests[t].guestCheckOut = 0;
sem_init(guests[t].hasRoom, 0, 0);
sem_init(guests[t].checkedOut, 0, 0);
pthread_create(&guests[t], NULL, Guest, (void *) &guests[t]);
}
}
我有一个接受以下参数的函数: int setvalue(void (*)(void *)); 为了满足参数:void (*)(void *),我创建了这样一个函数: static void *
我有以下代码: typedef void VOID; int f(void); int g(VOID); 在 C 中编译得很好(在 Fedora 10 上使用 gcc 4.3.2)。与 C++ 编译的
这个问题已经有答案了: Is f(void) deprecated in modern C and C++? [duplicate] (6 个回答) 已关闭 7 年前。 B.A.T.M.A.N./A.
我在 ASP.NET Core 3.1 项目上有以下 Identity Server 4 配置: services .AddIdentityServer(y => { y.Events.R
我们有一个 O365 租户,一切都是开箱即用的。租户放置在德国云中,而不是全局 (office.de) 中。我们还开发了一个 Office 插件,使用 OAuth 2.0 授权访问共享点。首先,我们向
我有一个如下所示的路由 routes.MapRoute( name: "Default", url: "{controller}/{action}/{i
我正在尝试使用 OAuth2.0 访问 google 文档。我已经从 Google API 控制台获取了客户端 ID 和 key 。但是当我运行这段代码时,我收到了异常。如果我遗漏了什么,有人可以建议
此代码有效: let mut b: Vec = Vec::with_capacity(a.len()); for val in a.iter() { b.push(val); } 此代码不起作
使用 client_credintials 授权类型请求 EWS oauth2 v2.0 的访问 token 时出现错误。 https://login.microsoftonline.com/tena
我通过 Java 应用程序使用 Google 电子表格时遇到了问题。我创建了应用程序,该应用程序运行了 1 年多,没有任何问题,我什至在 Create Spreadsheet using Google
如何创建 匹配所有无效 Base64 字符的正则表达式?我在堆栈上找到了 [^a-zA-Z0-9+/=\n\r].*$ 但是当我尝试时我得到了带有 - 符号的结果字符串.我根本不知道正则表达式,任何人
我从 Gitlab CI/CD Pipelines 获得错误信息:yaml invalid。问题是由 .gitlab-ci.yml 脚本的第五行引起的: - 'ssh deployer@gita
我有 3 个数据源,设置如下: @Configuration @Component public class DataSourceConfig { @Bean("foo") @Conf
你好,我想用bulkCreate ex 插入数据: [ { "typeId": 5, "devEui": "0094E796CBFCFEF9", "application_name": "Pressu
UIApplicationExitsOnSuspend 不会强制我的应用程序退出。我已经清理过目标、删除了应用程序、重建并重新安装了很多次。 我确实需要退出我的应用程序。 最佳答案 您是否链接了 SD
在 iPhone 配置门户上,显示我的 iPhone 团队配置配置文件无效。有一个“由 Xcode 管理”文本。 “续订”按钮被禁用。 我该如何解决这个问题?谢谢 最佳答案 使用 Xcode 3.2.
好的,所以今天我用我们的“实时”数据库中的新信息更新了我的数据库……从那时起,我的一个表格就出现了问题。如果您需要任何代码,请告诉我,我将对其进行编辑并发布所需的代码... 我有一个报告表格,其中有一
我有一个结构体,其中有一个元素表示为 void (*func)(); 我知道 void 指针通常用于函数指针,但我似乎无法定义该函数。我不断收到取消引用指向不完整类型的指针。我用谷歌搜索了一下但没有结
我正在尝试使用 Coldfusion 9 从 ning 网络获取凭证,所以首先这是测试 api 的 curl 语法: curl -k https://external.ningapis.com/xn/
这个问题已经有答案了: Does C have references? (2 个回答) 已关闭 4 年前。 我正在学习 C 语言引用,这是我的代码: #include int main(void)
我是一名优秀的程序员,十分优秀!