thread.inc 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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. end;
  36. destructor TThread.Destroy;
  37. begin
  38. end;
  39. procedure TThread.Resume;
  40. begin
  41. end;
  42. procedure TThread.Suspend;
  43. begin
  44. end;
  45. procedure TThread.Terminate;
  46. begin
  47. end;
  48. function TThread.WaitFor: Integer;
  49. begin
  50. WaitFor:=0;
  51. end;
  52. {
  53. $Log$
  54. Revision 1.4 2000-01-07 01:24:34 peter
  55. * updated copyright to 2000
  56. Revision 1.3 2000/01/06 01:20:34 peter
  57. * moved out of packages/ back to topdir
  58. Revision 1.1 2000/01/03 19:33:09 peter
  59. * moved to packages dir
  60. Revision 1.1 1999/05/30 10:46:43 peter
  61. * start of tthread for linux,win32
  62. Revision 1.2 1999/04/08 10:18:57 peter
  63. * makefile updates
  64. }