diff options
Diffstat (limited to 'ChocolArm64/AThread.cs')
| -rw-r--r-- | ChocolArm64/AThread.cs | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/ChocolArm64/AThread.cs b/ChocolArm64/AThread.cs new file mode 100644 index 00000000..5c032289 --- /dev/null +++ b/ChocolArm64/AThread.cs @@ -0,0 +1,72 @@ +using ChocolArm64.Memory; +using ChocolArm64.State; +using System; +using System.Threading; + +namespace ChocolArm64 +{ + public class AThread + { + public AThreadState ThreadState { get; private set; } + public AMemory Memory { get; private set; } + + public long EntryPoint { get; private set; } + + private ATranslator Translator; + + private ThreadPriority Priority; + + private Thread Work; + + public event EventHandler WorkFinished; + + public int ThreadId => ThreadState.ThreadId; + + public bool IsAlive => Work.IsAlive; + + private bool IsExecuting; + + private object ExecuteLock; + + public AThread(AMemory Memory, ThreadPriority Priority, long EntryPoint) + { + this.Memory = Memory; + this.Priority = Priority; + this.EntryPoint = EntryPoint; + + ThreadState = new AThreadState(); + Translator = new ATranslator(this); + ExecuteLock = new object(); + } + + public void StopExecution() => Translator.StopExecution(); + + public bool Execute() + { + lock (ExecuteLock) + { + if (IsExecuting) + { + return false; + } + + IsExecuting = true; + } + + Work = new Thread(delegate() + { + Translator.ExecuteSubroutine(EntryPoint); + + Memory.RemoveMonitor(ThreadId); + + WorkFinished?.Invoke(this, EventArgs.Empty); + }); + + Work.Priority = Priority; + + Work.Start(); + + return true; + } + } +}
\ No newline at end of file |
