diff options
author | crupest <crupest@outlook.com> | 2024-02-12 15:47:31 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2024-03-20 22:28:21 +0800 |
commit | a21be4edaa483b86872ad732fc4b93970a607952 (patch) | |
tree | e80010d0ef48cb2804c8509a753dc9455dee2a08 /src/common/platform/unix/PosixSpawnSubProcess.cpp | |
parent | f9c404510584faab71b9e9d911d9b396b0f420b0 (diff) | |
download | cru-a21be4edaa483b86872ad732fc4b93970a607952.tar.gz cru-a21be4edaa483b86872ad732fc4b93970a607952.tar.bz2 cru-a21be4edaa483b86872ad732fc4b93970a607952.zip |
WORKING: add Buffer and AutoReadStream.
Diffstat (limited to 'src/common/platform/unix/PosixSpawnSubProcess.cpp')
-rw-r--r-- | src/common/platform/unix/PosixSpawnSubProcess.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/common/platform/unix/PosixSpawnSubProcess.cpp b/src/common/platform/unix/PosixSpawnSubProcess.cpp index a356de77..7d5ba6e4 100644 --- a/src/common/platform/unix/PosixSpawnSubProcess.cpp +++ b/src/common/platform/unix/PosixSpawnSubProcess.cpp @@ -23,4 +23,11 @@ PosixSpawnSubProcess::PosixSpawnSubProcess( PosixSpawnSubProcess::~PosixSpawnSubProcess() {} +void PosixSpawnSubProcess::PlatformCreateProcess() { + +} + +PlatformSubProcessExitResult PosixSpawnSubProcess::PlatformWaitForProcess() {} + +void PosixSpawnSubProcess::PlatformKillProcess() {} } // namespace cru::platform::unix |