-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement spawn2ve() and spawn2vpe()
This has the following features over spawn2(): 1. Split into spawn2ve() which is non-PATH-searching version and spawn2vpe() which is PATH-searching version. 2. Pass open file handles without FD_CLOEXEC to a child unless P_2_NOINEHRIT is given explicitly. modified: Makefile modified: check.cmd new file: include/os2compat/spawn2.h new file: process/spawn2.c new file: process/spawn2.h modified: testcase/Makefile new file: testcase/spawn2-1.c new file: testcase/spawn2-2.c
- Loading branch information
Showing
8 changed files
with
689 additions
and
1 deletion.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
/* | ||
* spawn2.h for os2compat | ||
* | ||
* Copyright (C) 2024 KO Myung-Hun <[email protected]> | ||
* | ||
* This program is free software. It comes without any warranty, to | ||
* the extent permitted by applicable law. You can redistribute it | ||
* and/or modify it under the terms of the Do What The Fuck You Want | ||
* To Public License, Version 2, as published by Sam Hocevar. See | ||
* http://www.wtfpl.net/ for more details. | ||
*/ | ||
|
||
#ifndef OS2COMPAT_INCLUDE_SPAWN2_H | ||
#define OS2COMPAT_INCLUDE_SPAWN2_H | ||
|
||
#include "priv/process/spawn2.h" | ||
|
||
#endif |
Oops, something went wrong.