added the concept of a process

This commit is contained in:
2023-04-14 00:18:21 +02:00
parent 655439461a
commit 747bde4aa6
3 changed files with 75 additions and 0 deletions

8
src/kernel/ps/Process.hx Normal file
View File

@@ -0,0 +1,8 @@
package kernel.ps;
/**
Defines an independent process that can be run by the kernel.
**/
interface Process {
public function run(handle: ProcessHandle): Void;
}