| 48 | class TSemaphorePipe { |
| 49 | public: |
| 50 | inline TSemaphorePipe() { |
| 51 | TPipeHandle::Pipe(S_[0], S_[1]); |
| 52 | |
| 53 | SetNonBlock(S_[0]); |
| 54 | SetNonBlock(S_[1]); |
| 55 | } |
| 56 | |
| 57 | inline size_t Acquire(TCont* c) { |
| 58 | char ch; |
nothing calls this directly
no test coverage detected