revert between 56095 -> 55830 in arch
[AROS.git] / compiler / alib / pool.h
blob76886e4f7108026b7d51d81352fa02d77da66e7a
1 #ifndef _POOL_H
2 #define _POOL_H
4 /*
5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
6 Original version from libnix
7 $Id$
9 Desc: amiga.lib internal header file for pools
10 Lang: english
13 #include <exec/lists.h>
14 #include <exec/memory.h>
15 #include <exec/execbase.h>
16 #include <proto/alib.h>
17 #include <proto/exec.h>
19 /* our PRIVATE! memory pool structure
20 (_NOT_ compatible with original amiga.lib!) */
22 typedef struct Pool
24 struct MinList PuddleList;
25 struct MinList ThreshList;
27 ULONG MemoryFlags;
28 ULONG PuddleSize;
29 ULONG ThreshSize;
30 } POOL;
32 #endif /* _POOL_H */