mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-02 16:33:13 +00:00
LibCore: Implement System::set_close_on_exec
This commit is contained in:
parent
2e200489c8
commit
2abc792938
Notes:
github-actions[bot]
2025-03-20 02:26:29 +00:00
Author: https://github.com/stasoid
Commit: 2abc792938
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/3002
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
8 changed files with 31 additions and 35 deletions
|
@ -106,9 +106,7 @@ ErrorOr<void> PosixSocketHelper::set_blocking(bool)
|
|||
|
||||
ErrorOr<void> PosixSocketHelper::set_close_on_exec(bool enabled)
|
||||
{
|
||||
if (!SetHandleInformation(to_handle(m_fd), HANDLE_FLAG_INHERIT, enabled ? 0 : HANDLE_FLAG_INHERIT))
|
||||
return Error::from_windows_error();
|
||||
return {};
|
||||
return System::set_close_on_exec(m_fd, enabled);
|
||||
}
|
||||
|
||||
ErrorOr<size_t> PosixSocketHelper::pending_bytes() const
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue