syncob.inc 728 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. This file is part of the Free Component Library (FCL)
  3. Copyright (c) 1999-2000 by Florian Klaempfl
  4. member of the Free Pascal development team
  5. See the file COPYING.FPC, included in this distribution,
  6. for details about the copyright.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  10. **********************************************************************}
  11. procedure TSynchroObject.Acquire;
  12. begin
  13. end;
  14. procedure TSynchroObject.Release;
  15. begin
  16. end;
  17. procedure TCriticalSection.Enter;
  18. begin
  19. Acquire;
  20. end;
  21. procedure TCriticalSection.Leave;
  22. begin
  23. Release;
  24. end;