systhrd.inc 946 B

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. $Id$
  3. This file is part of the Free Pascal run time library.
  4. Copyright (c) 2002 by Peter Vreman,
  5. member of the Free Pascal development team.
  6. Linux (pthreads) 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.1 2005-02-06 12:16:52 peter
  23. * bsd thread updates
  24. Revision 1.1 2005/02/06 11:20:52 peter
  25. * threading in system unit
  26. * removed systhrds unit
  27. }