syncob.inc 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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.1 2000-07-13 06:31:31 michael
  23. + Initial import
  24. Revision 1.4 2000/01/07 01:24:33 peter
  25. * updated copyright to 2000
  26. Revision 1.3 2000/01/06 01:20:33 peter
  27. * moved out of packages/ back to topdir
  28. Revision 1.1 2000/01/03 19:33:08 peter
  29. * moved to packages dir
  30. Revision 1.1 1999/06/07 15:51:51 michael
  31. + Renamed to syncob
  32. Revision 1.2 1998/09/30 13:41:04 florian
  33. * fixes to make it compilable
  34. Revision 1.1 1998/09/29 11:14:25 florian
  35. + initial revision
  36. }