Process.h 240 B

123456789101112131415161718
  1. /*
  2. * Copyright (c) 2021, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #pragma once
  7. #include <AK/Forward.h>
  8. namespace Core {
  9. class Process {
  10. public:
  11. static pid_t spawn(StringView path);
  12. };
  13. }