thread.inc 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2000 by the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. {****************************************************************************}
  12. {* TThread *}
  13. {****************************************************************************}
  14. procedure TThread.CallOnTerminate;
  15. begin
  16. end;
  17. function TThread.GetPriority: TThreadPriority;
  18. begin
  19. GetPriority:=tpNormal;
  20. end;
  21. procedure TThread.SetPriority(Value: TThreadPriority);
  22. begin
  23. end;
  24. procedure TThread.SetSuspended(Value: Boolean);
  25. begin
  26. end;
  27. procedure TThread.DoTerminate;
  28. begin
  29. end;
  30. procedure TThread.Synchronize(Method: TThreadMethod);
  31. begin
  32. end;
  33. constructor TThread.Create(CreateSuspended: Boolean);
  34. begin
  35. {IsMultiThread := TRUE; }
  36. end;
  37. destructor TThread.Destroy;
  38. begin
  39. end;
  40. procedure TThread.Resume;
  41. begin
  42. end;
  43. procedure TThread.Suspend;
  44. begin
  45. end;
  46. procedure TThread.Terminate;
  47. begin
  48. end;
  49. function TThread.WaitFor: Integer;
  50. begin
  51. WaitFor:=0;
  52. end;
  53. {
  54. $Log$
  55. Revision 1.4 2002-09-07 15:15:24 peter
  56. * old logs removed and tabs fixed
  57. }