Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nsutil: wrap error that comes from the syscall so caller can do error…
…s.As (#24480) User of `nsutil` library should be able to do the following and for it to work: ``` var errno syscall.Errno if errors.As(err, &errno) { if errno == unix.EBUSY { ... } } ``` This commit fixes that issue.
- Loading branch information