8 lines
103 B
C++
Executable file
8 lines
103 B
C++
Executable file
|
|
|
|
class BoundBuffer{
|
|
Semaphore full(n);
|
|
Semaphore empty(n);
|
|
Semaphore mutex(n);
|
|
}
|
|
|