Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
571 B

  1. /***************************************************************************\
  2. *
  3. * File: AllocPool.cpp
  4. *
  5. * Description:
  6. * AllocPool implements a lightweight class used to pool memory allocations in
  7. * a LIFO stack. This class has been designed work specifically well with
  8. * RockAll.
  9. *
  10. *
  11. * History:
  12. * 1/28/2000: JStall: Created
  13. *
  14. * Copyright (C) 2000 by Microsoft Corporation. All rights reserved.
  15. *
  16. \***************************************************************************/
  17. #include "stdafx.h"
  18. #include "Base.h"
  19. #include "AllocPool.h"