systhrd.inc 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2002-2005 by Peter Vreman,
  5. member of the Free Pascal development team.
  6. MacOS threading support implementation.
  7. See the file COPYING.FPC, included in this distribution,
  8. for details about the copyright.
  9. This program is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. **********************************************************************}
  13. Procedure InitSystemThreads;
  14. begin
  15. { This should be changed to a real value during
  16. thread driver initialization if appropriate. }
  17. ThreadID := 1;
  18. SetNoThreadManager;
  19. end;
  20. {
  21. $Log$
  22. Revision 1.2 2005-05-14 11:52:37 olle
  23. * Updated header comments
  24. Revision 1.1 2005/02/07 21:30:12 peter
  25. * system unit updated
  26. Revision 1.1 2005/02/06 16:57:18 peter
  27. * threads for go32v2,os,emx,netware
  28. Revision 1.1 2005/02/06 12:16:52 peter
  29. * bsd thread updates
  30. Revision 1.1 2005/02/06 11:20:52 peter
  31. * threading in system unit
  32. * removed systhrds unit
  33. }