File: MemPools.md

package info (click to toggle)
mocka 9605-1
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 2,488 kB
  • ctags: 105
  • sloc: asm: 452; makefile: 198; sh: 124; ansic: 14
file content (36 lines) | stat: -rw-r--r-- 1,194 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
(******************************************************************************)
(* Copyright (c) 1993 by GMD Karlruhe, Germany				      *)
(* Gesellschaft fuer Mathematik und Datenverarbeitung			      *)
(* (German National Research Center for Computer Science)		      *)
(* Forschungsstelle fuer Programmstrukturen an Universitaet Karlsruhe	      *)
(* All rights reserved.							      *)
(* Don't modify this file under any circumstances			      *)
(******************************************************************************)

(* $Id: MemPools.md,v 1.2 1993/10/28 10:26:35 hopp Exp armbru $ *)
DEFINITION MODULE MemPools;
(* $Log: MemPools.md,v $
 * Revision 1.2  1993/10/28  10:26:35  hopp
 * added Copyright
 *
 * Revision 1.1  1993/10/09  16:42:01  roques
 * Initial revision
 *
 *)

  FROM SYSTEM IMPORT ADDRESS;

  TYPE
    MemPool;

  PROCEDURE NewPool(VAR pool: MemPool);
  (* Create a new, empty MemPool.	*)

  PROCEDURE PoolAllocate(VAR pool: MemPool; VAR ptr: ADDRESS; want: CARDINAL);
  (* Allocate want bytes of memory from MemPool.	*)
  (* ptr's alignment will be suitable for all types.	*)

  PROCEDURE KillPool(VAR pool: MemPool);
  (* Destroy the pool. *)

END MemPools.