added the concept of a process
This commit is contained in:
8
src/kernel/ps/Process.hx
Normal file
8
src/kernel/ps/Process.hx
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user