mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-31 13:21:05 +00:00
22 lines
409 B
C#
22 lines
409 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace IHAL
|
|
{
|
|
/// <summary>
|
|
/// this is prob machine dependent.
|
|
/// </summary>
|
|
public interface IHalScheduling
|
|
{
|
|
//Schedule Thread
|
|
|
|
// pass in saved registers and instruction pointers. .
|
|
void ScheduleThread();
|
|
|
|
void SaveThread();
|
|
|
|
|
|
}
|
|
}
|