34 lines
563 B
C++
34 lines
563 B
C++
|
//
|
||
|
// Universal Resource Consumer: Just an innocent stress program
|
||
|
// Copyright (c) Microsoft Corporation, 1997, 1998, 1999
|
||
|
//
|
||
|
|
||
|
//
|
||
|
// header: pool.hxx
|
||
|
// author: silviuc
|
||
|
// created: Fri Apr 10 17:02:32 1998
|
||
|
//
|
||
|
|
||
|
#ifndef _POOL_HXX_INCLUDED_
|
||
|
#define _POOL_HXX_INCLUDED_
|
||
|
|
||
|
//
|
||
|
// Function:
|
||
|
//
|
||
|
// ConsumeAllNonpagedPool
|
||
|
//
|
||
|
// Description:
|
||
|
//
|
||
|
// This function consumes as much non paged pool as possible.
|
||
|
//
|
||
|
|
||
|
void
|
||
|
ConsumeAllNonpagedPool ();
|
||
|
|
||
|
// ...
|
||
|
#endif // #ifndef _POOL_HXX_INCLUDED_
|
||
|
|
||
|
//
|
||
|
// end of header: pool.hxx
|
||
|
//
|