blob: 067243c5735e239daceceb54a13da8f23bc7ae7b (
plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include "memblock.h"
unsigned memblock_count = 0, memblock_total = 0;
struct memblock *memblock_new(size_t length) {
struct memblock *b = malloc(sizeof(struct memblock)+length);
b->type = MEMBLOCK_APPENDED;
b->ref = 1;
b->length = length;
b->data = b+1;
memblock_count++;
memblock_total += length;
return b;
}
struct memblock *memblock_new_fixed(void *d, size_t length) {
struct memblock *b = malloc(sizeof(struct memblock));
b->type = MEMBLOCK_FIXED;
b->ref = 1;
b->length = length;
b->data = d;
memblock_count++;
memblock_total += length;
return b;
}
struct memblock *memblock_new_dynamic(void *d, size_t length) {
struct memblock *b = malloc(sizeof(struct memblock));
b->type = MEMBLOCK_DYNAMIC;
b->ref = 1;
b->length = length;
b->data = d;
memblock_count++;
memblock_total += length;
return b;
}
struct memblock* memblock_ref(struct memblock*b) {
assert(b && b->ref >= 1);
b->ref++;
return b;
}
void memblock_unref(struct memblock*b) {
assert(b && b->ref >= 1);
b->ref--;
if (b->ref == 0) {
if (b->type == MEMBLOCK_DYNAMIC)
free(b->data);
memblock_count--;
memblock_total -= b->length;
free(b);
}
}
void memblock_unref_fixed(struct memblock *b) {
void *d;
assert(b && b->ref >= 1);
if (b->ref == 1) {
memblock_unref(b);
return;
}
d = malloc(b->length);
assert(d);
memcpy(d, b->data, b->length);
b->data = d;
b->type = MEMBLOCK_DYNAMIC;
}
|