diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-03-07 13:23:13 +0100 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-03-08 13:46:45 +0100 |
commit | d1f1da9ce54efa058681f2d78e427e08c1cb171b (patch) | |
tree | 2ee1d2f1d78615134c4b303d9ba6379a9243632f /src/buildtool/system/system.hpp | |
parent | 28abe1bf4d8c16af92e1ef3dc1f267399f0690b9 (diff) | |
download | justbuild-d1f1da9ce54efa058681f2d78e427e08c1cb171b.tar.gz |
SystemCommand: Exit without cleanup on error and avoid logger
Diffstat (limited to 'src/buildtool/system/system.hpp')
-rw-r--r-- | src/buildtool/system/system.hpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/buildtool/system/system.hpp b/src/buildtool/system/system.hpp new file mode 100644 index 00000000..2038d5c7 --- /dev/null +++ b/src/buildtool/system/system.hpp @@ -0,0 +1,10 @@ +#ifndef INCLUDED_SRC_BUILDTOOL_SYSTEM_SYSTEM_HPP +#define INCLUDED_SRC_BUILDTOOL_SYSTEM_SYSTEM_HPP + +namespace System { + +void ExitWithoutCleanup(int exit_code); + +} + +#endif // INCLUDED_SRC_BUILDTOOL_SYSTEM_SYSTEM_HPP |