syncob.inc 885 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. $Id$
  3. This file is part of the Free Component Library (FCL)
  4. Copyright (c) 1998 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 1999-06-07 15:51:51 michael
  23. + Renamed to syncob
  24. Revision 1.2 1998/09/30 13:41:04 florian
  25. * fixes to make it compilable
  26. Revision 1.1 1998/09/29 11:14:25 florian
  27. + initial revision
  28. }