19 lines
240 B
C
19 lines
240 B
C
|
|
/*
|
||
|
|
* 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);
|
||
|
|
};
|
||
|
|
|
||
|
|
}
|