ProcessOps

This commit is contained in:
2025-11-26 22:12:49 +05:30
parent d9756df436
commit d24c7f3246
19 changed files with 497 additions and 317 deletions

View File

@ -0,0 +1 @@
add_executable(LongProcess LongProcess/Main.cpp)

View File

@ -0,0 +1,12 @@
#include <thread>
#include <iostream>
int main(int, char **)
{
std::cout << "Started!\n";
std::cout.flush();
std::this_thread::sleep_for(std::chrono::seconds(5));
std::cout << "Ended!\n";
std::cout.flush();
return 100;
}