互斥和信号量
我正在编写一个程序(用于家庭作业)来模拟男女通用的浴室。一次只允许 4 人进入,如果异性已经在使用卫生间,则男女不能进入。我的问题是浴室最多只能容纳 4 人。从输出中可以看到,一次只有 1 个人进入卫生间。这是我的代码:
const int Delayx = 60;
int i;
int restroom = 0;
int Menwaiting = 0;
int Womenwaiting = 0;
semaphore max_capacity;
semaphore woman;
semaphore man;
semaphore mutex;
semaphore restroomcount;
void Delay(void)
{
int DelayTime;
DelayTime = random(Delayx);
for (i = 0; i<DelayTime; i++);
}
void Woman(void)
{
// for(;;){
Womenwaiting++;
//wait(mutex);
wait(woman);
wait(max_capacity);
//wait(woman);
wait(mutex);
wait(restroomcount);
cout << "A Woman has entered Restroom"<<endl;
cout << "People in the Restroom:" << restroom++ <<endl <<endl;
signal(restroomcount);
Womenwaiting--;
Delay();
wait(restroomcount);
cout << "A woman has exited Restroom"<<endl;
cout << "People in the Restroom:" << restroom-- <<endl<<endl;
signal(restroomcount);
signal(mutex);
signal(max_capacity);
if(Menwaiting > Womenwaiting){
signal(man);
}
else{
signal(woman);
}
//signal(max_capacity);
//signal(man);
// }
}
void Man(void)
{
// for(;;){
Menwaiting++;
//wait(mutex);
wait(man);
wait(max_capacity);
//wait(man);
wait(mutex);
wait(restroomcount);
cout <<"A Man has entered the Restroom"<<endl;
cout <<"People in the Restroom:" << restroom++ <<endl<<endl;
signal(restroomcount);
Menwaiting--;
//signal(mutex);
Delay();
//wait(mutex);
wait(restroomcount);
cout << "A man has exited the Restroom"<<endl;
cout <<"People in the Restroom:" << restroom-- <<endl<<endl;
signal(restroomcount);
signal(mutex);
signal(max_capacity);
if(Womenwaiting > Menwaiting){
signal(woman);
}
else{
signal(man);
}
//signal(max_capacity);
//signal(woman);
//}
}
void main()
{
initialsem(woman,1);
initialsem(man,1);
initialsem(max_capacity,4);
initialsem(mutex,1);
initialsem(restroomcount,1);
cobegin
{
Woman(); Woman(); Woman(); Woman(); Woman(); Man(); Man(); Man(); Man(); Man();
}
}
这会生成以下输出:
一名男子进入了洗手间
洗手间里的人:1一名男子已离开洗手间
洗手间里的人:0一名男子进入了洗手间
洗手间里的人:1一名男子已离开洗手间
洗手间里的人:0一名女子进入洗手间
洗手间里的人:1一名妇女离开了洗手间
洗手间里的人:0一名女子进入洗手间
洗手间里的人:1一名妇女离开了洗手间
洗手间里的人:0
等等,永远。
I am writing a program (for homework) that simulates a unisex bathroom. Only 4 people are allowed at a time and men and woman cannot enter if the other sex is already using the bathroom. My problem is with allowing a max of 4 people in the bathroom. As you can see from the output, only 1 person is getting into the restroom at a time. Here is my code:
const int Delayx = 60;
int i;
int restroom = 0;
int Menwaiting = 0;
int Womenwaiting = 0;
semaphore max_capacity;
semaphore woman;
semaphore man;
semaphore mutex;
semaphore restroomcount;
void Delay(void)
{
int DelayTime;
DelayTime = random(Delayx);
for (i = 0; i<DelayTime; i++);
}
void Woman(void)
{
// for(;;){
Womenwaiting++;
//wait(mutex);
wait(woman);
wait(max_capacity);
//wait(woman);
wait(mutex);
wait(restroomcount);
cout << "A Woman has entered Restroom"<<endl;
cout << "People in the Restroom:" << restroom++ <<endl <<endl;
signal(restroomcount);
Womenwaiting--;
Delay();
wait(restroomcount);
cout << "A woman has exited Restroom"<<endl;
cout << "People in the Restroom:" << restroom-- <<endl<<endl;
signal(restroomcount);
signal(mutex);
signal(max_capacity);
if(Menwaiting > Womenwaiting){
signal(man);
}
else{
signal(woman);
}
//signal(max_capacity);
//signal(man);
// }
}
void Man(void)
{
// for(;;){
Menwaiting++;
//wait(mutex);
wait(man);
wait(max_capacity);
//wait(man);
wait(mutex);
wait(restroomcount);
cout <<"A Man has entered the Restroom"<<endl;
cout <<"People in the Restroom:" << restroom++ <<endl<<endl;
signal(restroomcount);
Menwaiting--;
//signal(mutex);
Delay();
//wait(mutex);
wait(restroomcount);
cout << "A man has exited the Restroom"<<endl;
cout <<"People in the Restroom:" << restroom-- <<endl<<endl;
signal(restroomcount);
signal(mutex);
signal(max_capacity);
if(Womenwaiting > Menwaiting){
signal(woman);
}
else{
signal(man);
}
//signal(max_capacity);
//signal(woman);
//}
}
void main()
{
initialsem(woman,1);
initialsem(man,1);
initialsem(max_capacity,4);
initialsem(mutex,1);
initialsem(restroomcount,1);
cobegin
{
Woman(); Woman(); Woman(); Woman(); Woman(); Man(); Man(); Man(); Man(); Man();
}
}
This generates the following output:
A Man has entered the Restroom
People in the Restroom:1A man has exited the Restroom
People in the Restroom:0A Man has entered the Restroom
People in the Restroom:1A man has exited the Restroom
People in the Restroom:0A Woman has entered Restroom
People in the Restroom:1A woman has exited Restroom
People in the Restroom:0A Woman has entered Restroom
People in the Restroom:1A woman has exited Restroom
People in the Restroom:0
And so on, forever.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我认为你的信号量太多了。您的男性/女性信号量一次选通至 1 个人。考虑使用一些受互斥锁保护的状态变量(浴室的当前性别、浴室中的人数)而不是这么多不同的信号量。
您是否保持排队顺序,或者人们可以根据当前的洗手间性别跳过排队吗?例如,如果有女人,女人,女人,男人,女人,是第4个女人允许跳过男人进入洗手间,或者3个女人退出,然后男人进入/退出,然后女人可以进入?这是一个比允许跳过更容易的问题。
I think you have too many semaphores. Your man/woman semaphores are gating to 1 person at a time. Consider using some state variables protected by mutexes (current sex of bathroom, number of people in bathroom) rather than so many different semaphores.
Do you maintain a line ordering or can people skip based on the current restroom sex? For instance, if you have woman,woman,woman,man,woman, is the 4th woman allowed to skip the man and go into the restroom, or do the 3 women exit, then the man enters/exits, then the woman can enter? This is an easier problem than allowing a skip.
是否需要使用信号量?例如,在“c++”伪代码中,实现如下所示:
首先让我们创建一个状态对象和一个验证状态之间转换的函数
我们还创建一个对当前状态的全局引用和一个基于当前状态更新的函数在下一个所需的状态下
,我们创建一个全局向量来保存状态,以及一个代表试图去洗手间的女性线程的函数
,以及具有流程循环逻辑和初始化的主函数,
此代码应该可以工作(我还没有测试它)。我有点作弊,因为我没有删除创建的任何临时状态,因此每个状态都会持续存在,直到进程终止。正确的垃圾收集需要一种称为危险指针管理的技术。
请注意,我不使用任何互斥信号量或锁,我使用的唯一锁定原语是 CAS( 地址、 old_value 、 new_value ) (比较和交换)。该原语以原子方式比较指针(地址),如果它仍然包含(old_value),则为其分配 new_value 并成功,否则失败。另外,您仍然需要 std::vector 的全局锁来存储我未包含在代码中的状态(您也可以泄漏它们,但我将它们存储在某个地方,这样您就可以认为一旦您知道这些状态就应该被删除) GC 如何在这些情况下工作)
由于我所有的中间状态都是不可变的(lisp/clojure 风格的不可变性),线程的争用(以及因此的饥饿)大大改善。在您的示例中,状态集很小(只是一群人),我们不删除已使用的状态还不错。
然而,即使有我提到的问题,我想你也会同意正在发生的事情的逻辑更加明确和可读。
is the use of semaphores a requirement? for example, in "c++" pseudo-code, a implementation would look like:
First lets create a state object and a function that validates transitions between states
Lets also create a global reference to the current state and a function to update the current state based on some next desired state
then we create a global vector to hold the states, and a function representing a women thread trying to go to the bathroom
and the main function with process loop logic and initialization
this code should work ( i haven't tested it ). I've cheated a bit because i'm not deleting any of the provisional states created, so each state persist until the process dies. proper garbage collection would require a technique called hazard pointer management.
Note that i dont use any mutex semaphores or lock, the only locking primitive i am using is the CAS( address, old_value , new_value ) (compare and swap). This primitive atomically compares a pointer (address) and if it still contains (old_value) then it assign it new_value and succeeds, otherwise it fails. Also, you still need a global lock for the std::vector storing the states that i have not included in the code (you can also just leak them, but i store them somewhere so you can think that those should be deleted once you know how GC could be made to work in these cases)
Since all my intermediate states are inmutable (lisp/clojure style inmutabilitity) the contention (and hence, starvation) of the threads vastly improves. In your example the set of states is small (just a bunch of persons) its not too bad that we don't delete the used states.
however, even with the problems i've mentioned, i think you would agree that the logic of what is happening is much more explicit and readable.
问题的问题
原来的代码不太OO。
卫生间队列的处理应该与队列中人员的生成分开 - 如果至少在队列填满后不运行单独的线程。
假设男性和女性基本上是分开的队列 - 不以某种固定的顺序混合,否则使用信号量的问题没有任何意义。
问题不是描述条件合适的情况下有多少人可以进入,男厕所男多了,你是填到4个还是只填到男的队列再次少于女的?
即使如此,在我看来,所描述的问题(并且基于没有线程的示例代码)对于信号量来说并不能很好地工作,主要问题是信号量不容易产生计数,并且成功的等待会改变计数。
我在这个问题中看到的有趣的事情是,在几乎相等的队列长度和不允许另一个同性进入厕所与厕所中的剩余人离开之前同性数量再次变大的机会之间进行权衡时效率低下。让我们面对现实吧,它是男女皆宜的,因此无论性别如何,都应该允许 4 人进入;)
建议的解决方案
所以你需要使用信号量,信号量的有趣之处在于记录多次使用(与互斥体不同),如果没有可用空间,那么它可能会等待。然而,它不会区分等待的人,它只会告诉您有空闲空间。
有 1 个信号量,并认为当有人进入队列或有人离开卫生间时应该检查信号量。
然后,您可以为男性和女性各安排 1 个“队列”(从给定的情况来看,这基本上是一个计数)。这些队列在条目方面并不真正相关或相互限制,因此与信号量无关。每个都可以遵循无锁定提供程序模式,但您可能会发现使用互斥体进行同步更容易,以便您可以检查队列的大小并操作它们。在下面,我直接使用了计数,而应该使用某种形式的 InterlockedIncrement 和 InterlockedDecrement 来防止在同一队列中添加和删除人员。
粗略地说,Bathroom.h
Bathroom.cpp
Program.cpp
Issues with the question
The original code isn't very OO.
The processing of the bathroom queue should be seperate from the generation of the people in the queue - if not running a seperate thread at least after the queue is filled.
Making the assumption that there are basically separate queues of men and women - not intermixed in some fixed order, otherwise the problem doesn't make any sense to use a semaphore.
The problem doesn't describe how many people get to enter when the condition is right, male toilet with more men, do you fill it to 4 or only until the queue of men is less than women again?
Even so the problem as described (and based on sample code with no threading) doesn't work well with a semaphore in my opinion, the main problem is that the semaphore doesn't yield the count easily and a successful wait changes the count.
The interesting thing I see in the problem is the inefficiency in a near equal queue length and trading between disallowing another of the same sex into the toilet and the chance that before the remaining persons in the toilet leave the number of the same sex becomes larger again. Lets face it, it's unisex and so it should allow 4 people in regardless of gender ;)
Proposed solution
So you need to use a semaphore, the interesting things about a semaphore is the recording of multiple uses (unlike mutex) and if there is not free space then it will possibly wait. It does not discriminate however between those waiting, it will only tell that there is space free.
Have 1 semaphore and think you should check the semaphore when a person enters the queue or when somebody leaves the bathroom.
You could then have 1 'queue' each for men and women (from given this is basically a count). These queues are not really related or limiting on each other in terms of entry and so have nothing to do with semaphores. Each could follow a locking free provider pattern, but you might find it easier to use a mutex to synchronise so that you can examine the size of the queues and manipulate them. In the following I've just used the count directly, instead it should be using some form of InterlockedIncrement and InterlockedDecrement to protect against adding and removing people from the same queue.
In the rough, Bathroom.h
Bathroom.cpp
Program.cpp