File: allocate.h

package info (click to toggle)
sn 0.3.8-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, sid, trixie
  • size: 976 kB
  • sloc: ansic: 9,255; sh: 467; makefile: 210
file content (37 lines) | stat: -rw-r--r-- 810 bytes parent folder | download | duplicates (7)
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
37
/*
 * This file is part of the sn package.
 * Distribution of sn is covered by the GNU GPL. See file COPYING.
 * Copyright  1998-2000 Harold Tay.
 * Copyright  2000- Patrik Rdman.
 */

#ifndef ALLOCATE_H
#define ALLOCATE_H

/* int functions return -1 on error, 0 on success */

/* Return the object described by offset */

extern void *allo_deref (unsigned int offset);

/* Returns the offset of the object */

extern int allo_ref (void *object);

/* Return a descriptor to refer to this allocated arena */

extern int allo_init (char *path, int openflag);

/* Get a block of size size from the allocator */

extern int allo_make (int size);

/* Give back a block of size size to the allocator */

extern int allo_free (int chunk, int size);

/* Close this arena */

extern int allo_destroy (void);

#endif