-
Notifications
You must be signed in to change notification settings - Fork 478
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It uses an eventfd to sync parent and child to setup environment before starting the actual tracing. But it seems eventfd cannot handle the case where the parent existed early. In that case child will be stuck on the eventfd waiting for someone to write. The pipe will reject such case (IOW read will return an error) because it has clear role for each fd while an eventfd can be used for read and write so it won't reject read without writers. Fixed: #1866 Signed-off-by: Namhyung Kim <[email protected]>
- Loading branch information
Showing
1 changed file
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters