| Summary: | Simplify IPCSemaphore.h | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Myles C. Maxfield <mmaxfield> | ||||
| Component: | New Bugs | Assignee: | Myles C. Maxfield <mmaxfield> | ||||
| Status: | RESOLVED DUPLICATE | ||||||
| Severity: | Normal | CC: | ggaren, Hironori.Fujii, kkinnunen, thorton, webkit-bug-importer | ||||
| Priority: | P2 | Keywords: | InRadar | ||||
| Version: | WebKit Nightly Build | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| See Also: | https://bugs.webkit.org/show_bug.cgi?id=224223 | ||||||
| Attachments: |
|
||||||
|
Description
Myles C. Maxfield
2021-03-25 14:59:52 PDT
Created attachment 424285 [details]
Patch
Comment on attachment 424285 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=424285&action=review > Source/WebKit/Platform/IPC/IPCSemaphore.h:62 > -#if OS(DARWIN) > - explicit Semaphore(MachSendRight&&); > - > void signal(); > void wait(); > void waitFor(Timeout); > + > + explicit operator bool() const; > + > +#if OS(DARWIN) > + explicit Semaphore(MachSendRight&&); Is there a non-Darwin implementation of signal(), wait(), and waitFor()? I don't see one in IPCSemaphore.cpp. *** This bug has been marked as a duplicate of bug 224014 *** |