Function launch_detached
hamigaki::process::launch_detached —
Synopsis
void launch_detached(const std::string& path,
const std::vector<std::string>& args,
const environment& env);
void launch_detached(const std::string& path,
const std::vector<std::string>& args);
void launch_detached(const std::string& path, const environment& env);
void launch_detached(const std::string& path);
Description
Effects: |
パスpath で示される実行ファイルを引数args 、環境変数env で実行する。生成されたプロセスは親プロセスの制御から切り離される。 |
Notes: |
この関数で生成されたプロセスは、現在のプロセスに終了を通知することはない。 |