syncobjs.inc 743 B

1234567891011121314151617181920212223242526272829303132333435
  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. end.
  21. {
  22. $Log$
  23. Revision 1.1 1998-09-29 11:14:25 florian
  24. + initial revision
  25. }