syncob.inc 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1999-2000 by Florian Klaempfl
  5. member of the Free Pascal development team
  6. See the file COPYING.FPC, included in this distribution,
  7. for details about the copyright.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11. **********************************************************************}
  12. procedure TCriticalSection.Enter;
  13. begin
  14. Acquire;
  15. end;
  16. procedure TCriticalSection.Leave;
  17. begin
  18. Release;
  19. end;
  20. {
  21. $Log$
  22. Revision 1.4 2000-01-07 01:24:33 peter
  23. * updated copyright to 2000
  24. Revision 1.3 2000/01/06 01:20:33 peter
  25. * moved out of packages/ back to topdir
  26. Revision 1.1 2000/01/03 19:33:08 peter
  27. * moved to packages dir
  28. Revision 1.1 1999/06/07 15:51:51 michael
  29. + Renamed to syncob
  30. Revision 1.2 1998/09/30 13:41:04 florian
  31. * fixes to make it compilable
  32. Revision 1.1 1998/09/29 11:14:25 florian
  33. + initial revision
  34. }