这是我在操作系统考试中遇到的问题。我想不出它的正确答案。有人可以帮忙吗。Given 是一个同步代码,其中许多线程试图使用锁访问全局计数器 g-
if(lock==1)
wait(); //sleep this thread until some other thread wakes up this thread
else
lock=1; //enter in protected area
//access global counter g//
lock=0;
//wake up some other thread which is waiting for the lock to be released
上述同步有什么问题?选择下面给出的任何选项
- 同步很好,可以正常运行。
- 只能在单处理器系统上运行,而不能在多处理器系统上运行。
- 不会在任何系统上运行
- 不能说。需要更多数据