aboutsummaryrefslogtreecommitdiffstats
path: root/src/macosx/PseudoThread.pas
diff options
context:
space:
mode:
authork-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-08-27 20:41:40 +0000
committerk-m_schindler <k-m_schindler@b956fd51-792f-4845-bead-9b4dfca2ff2c>2008-08-27 20:41:40 +0000
commite2cdf68acd4bfb5afafba488845f22b126213c88 (patch)
tree914cb297f4ae1ce22bdc9f5c139ec75202a4232b /src/macosx/PseudoThread.pas
parent790ab861b17f96a4fccb23a1cdf10ff53208a3fb (diff)
downloadusdx-e2cdf68acd4bfb5afafba488845f22b126213c88.tar.gz
usdx-e2cdf68acd4bfb5afafba488845f22b126213c88.tar.xz
usdx-e2cdf68acd4bfb5afafba488845f22b126213c88.zip
Content of macosx/Wrapper moved to macosx. Wrapper deleted
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1325 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to 'src/macosx/PseudoThread.pas')
-rw-r--r--src/macosx/PseudoThread.pas48
1 files changed, 48 insertions, 0 deletions
diff --git a/src/macosx/PseudoThread.pas b/src/macosx/PseudoThread.pas
new file mode 100644
index 00000000..16157646
--- /dev/null
+++ b/src/macosx/PseudoThread.pas
@@ -0,0 +1,48 @@
+unit PseudoThread;
+
+{$IFDEF FPC}
+ {$MODE Delphi}
+{$ENDIF}
+
+{$I switches.inc}
+
+interface
+
+type
+
+// Debugging threads with XCode doesn't seem to work.
+// We use PseudoThread in Debug mode to get proper debugging.
+TPseudoThread = class(TObject)
+ private
+ protected
+ Terminated,
+ FreeOnTerminate : Boolean;
+ procedure Execute; virtual; abstract;
+ procedure Resume;
+ procedure Suspend;
+ public
+ constructor Create(const suspended : Boolean);
+end;
+
+implementation
+
+{ TPseudoThread }
+
+constructor TPseudoThread.Create(const suspended : Boolean);
+begin
+ if not suspended then begin
+ Execute;
+ end;
+end;
+
+procedure TPseudoThread.Resume;
+begin
+ Execute;
+end;
+
+procedure TPseudoThread.Suspend;
+begin
+end;
+
+end.
+