Mosa.Compiler.Framework.BaseCompiler.ExecuteThreadedCompile C# (CSharp) Method

ExecuteThreadedCompile() public method

public ExecuteThreadedCompile ( int threads ) : void
threads int
return void
        public void ExecuteThreadedCompile(int threads)
        {
            ExecuteThreadedCompilePass(threads);

            while (CompilationScheduler.StartNextPass())
            {
                ExecuteThreadedCompilePass(threads);
            }
        }

Usage Example

Example #1
0
 public void Execute(int threads)
 {
     Initialize();
     PreCompile();
     ScheduleAll();
     BaseCompiler.ExecuteThreadedCompile(threads);
     PostCompile();
 }