summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCore/Process.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibCore/Process.h')
-rw-r--r--Userland/Libraries/LibCore/Process.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/Userland/Libraries/LibCore/Process.h b/Userland/Libraries/LibCore/Process.h
new file mode 100644
index 0000000000..79820451e2
--- /dev/null
+++ b/Userland/Libraries/LibCore/Process.h
@@ -0,0 +1,18 @@
+/*
+ * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
+ *
+ * SPDX-License-Identifier: BSD-2-Clause
+ */
+
+#pragma once
+
+#include <AK/Forward.h>
+
+namespace Core {
+
+class Process {
+public:
+ static pid_t spawn(StringView path);
+};
+
+}