-
Notifications
You must be signed in to change notification settings - Fork 57
/
p-allocator.cc
50 lines (41 loc) · 1.29 KB
/
p-allocator.cc
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
#include "u-lib.hh"
#define ALLOC_SLOWDOWN 24
extern uint8_t end[];
uint8_t* heap_top;
uint8_t* stack_bottom;
void process_main() {
sys_consoletype(CONSOLE_MEMVIEWER);
// Fork three new copies. (But ignore failures.)
(void) sys_fork();
(void) sys_fork();
pid_t p = sys_getpid();
srand(p);
// The heap starts on the page right after the 'end' symbol,
// whose address is the first address not allocated to process code
// or data.
heap_top = reinterpret_cast<uint8_t*>(
round_up(reinterpret_cast<uintptr_t>(end), PAGESIZE)
);
// The bottom of the stack is the first address on the current
// stack page (this process never needs more than one stack page).
stack_bottom = reinterpret_cast<uint8_t*>(
round_down(rdrsp() - 1, PAGESIZE)
);
while (true) {
if (rand(0, ALLOC_SLOWDOWN - 1) < p) {
if (heap_top == stack_bottom || sys_page_alloc(heap_top) < 0) {
break;
}
*heap_top = p; /* check we have write access to new page */
heap_top += PAGESIZE;
}
sys_yield();
if (rand() < RAND_MAX / 32) {
sys_pause();
}
}
// After running out of memory, do nothing forever
while (true) {
sys_yield();
}
}