refactor(kernel): change Spawn function parameter type from char* to const char*

Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
2025-04-04 10:53:40 +00:00
parent f054e9976a
commit a333d8aa7c
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ namespace Execute
BinaryType GetBinaryType(FileNode *Path);
BinaryType GetBinaryType(std::string Path);
int Spawn(char *Path, const char **argv, const char **envp,
int Spawn(const char *Path, const char **argv, const char **envp,
Tasking::PCB *Parent = nullptr, bool Fork = false,
Tasking::TaskCompatibility Compatibility = Tasking::Native,
bool Critical = false);