-
Notifications
You must be signed in to change notification settings - Fork 312
Add close_range() system call #43
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ricardobranco777
wants to merge
4
commits into
NetBSD:trunk
Choose a base branch
from
ricardobranco777:close_range
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
6704068
Add close_range system call
ricardobranco777 a7ddc3d
compat_linux: Make linux_sys_close_range use sys_close_range
ricardobranco777 9fe3976
Add test for close_range adapted from t_closefrom
ricardobranco777 f1f915d
Regen for close_range
ricardobranco777 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
.Dd Feb 16, 2024 | ||
.Dt CLOSE_RANGE 2 | ||
.Os | ||
.Sh NAME | ||
.Nm close_range | ||
.Nd delete open file descriptors | ||
.Sh LIBRARY | ||
.Lb libc | ||
.Sh SYNOPSIS | ||
.In unistd.h | ||
.Ft int | ||
.Fn close_range "u_int first" "u_int last" "int flags" | ||
.Sh DESCRIPTION | ||
The | ||
.Fn close_range | ||
system call deletes all open file descriptors between | ||
.Fa first | ||
and | ||
.Fa last | ||
inclusive, clamped to the range of open file descriptors. | ||
Any errors encountered while closing file descriptors are ignored. | ||
Supported | ||
.Fa flags : | ||
.Bl -tag -width ".Dv CLOSE_RANGE_CLOEXEC" | ||
.It Dv CLOSE_RANGE_CLOEXEC | ||
Set the close-on-exec flag on descriptors in the range instead of closing them. | ||
.El | ||
.Sh RETURN VALUES | ||
Upon successful completion, | ||
.Fn close_range | ||
returns a value | ||
of 0. | ||
Otherwise, a value of -1 is returned and the global variable | ||
.Va errno | ||
is set to indicate the error. | ||
.Sh ERRORS | ||
The | ||
.Fn close_range | ||
system call | ||
will fail if: | ||
.Bl -tag -width Er | ||
.It Bq Er EINVAL | ||
The | ||
.Fa last | ||
argument is lower than the | ||
.Fa first | ||
argument. | ||
.It Bq Er EINVAL | ||
An invalid flag was set. | ||
.El | ||
.Sh SEE ALSO | ||
.Xr close 2 | ||
.Xr closefrom 3 | ||
.Sh HISTORY | ||
The | ||
.Fn close_range | ||
function first appeared in | ||
.Nx 11.0 . |
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.