示例#1
0
文件: Process.cs 项目: Myvar/PashOS
        public static Process Purge(KThread thread)
        {
            if (thread.Parent.MainThread != thread)
            {
                Process process = new Process();
                process.Threads.Add(thread);

                return process;
            }
            else throw new Exception("Cannot Purge a Main Thread...");
        }
示例#2
0
文件: Kernel.cs 项目: Myvar/PashOS
 protected override void BeforeRun()
 {
     Console.WriteLine("PashOS created by Emile Badenhorst and Daniel Jones");
     Engine en = new Engine();
     Process BootStrap = new Process("");
 }