-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change has* functions from using sync.Once to sync.OnceValue[s], which results in less global variables and simplifies code a little. The only notable changes are in haveProcThreadSelf: 1. Renamed to hasProcThreadSelf to match others; 2. Changed to use absolute path (assuming /proc is always available), as we can't pass a parameter to a sync.OnceValue function; 3. Changed to use unix.Access (simpler and faster). Signed-off-by: Kir Kolyshkin <[email protected]>
- Loading branch information
Showing
1 changed file
with
39 additions
and
71 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