Rev 966 | Rev 994 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 966 | Rev 988 | ||
---|---|---|---|
Line 27... | Line 27... | ||
27 | */ |
27 | */ |
28 | 28 | ||
29 | #include "version.h" |
29 | #include "version.h" |
30 | #include <ipc.h> |
30 | #include <ipc.h> |
31 | #include <ns.h> |
31 | #include <ns.h> |
- | 32 | #include <stdio.h> |
|
- | 33 | #include <unistd.h> |
|
- | 34 | #include <stdlib.h> |
|
- | 35 | ||
- | 36 | /* |
|
- | 37 | extern char _heap; |
|
- | 38 | void test_mremap(void) |
|
- | 39 | { |
|
- | 40 | printf("Writing to good memory\n"); |
|
- | 41 | mremap(&_heap, 120000, 0); |
|
- | 42 | printf("%P\n", ((char *)&_heap)); |
|
- | 43 | printf("%P\n", ((char *)&_heap) + 80000); |
|
- | 44 | *(((char *)&_heap) + 80000) = 10; |
|
- | 45 | printf("Making small\n"); |
|
- | 46 | mremap(&_heap, 16000, 0); |
|
- | 47 | printf("Failing..\n"); |
|
- | 48 | *((&_heap) + 80000) = 10; |
|
- | 49 | ||
- | 50 | printf("memory done\n"); |
|
- | 51 | } |
|
- | 52 | */ |
|
- | 53 | /* |
|
- | 54 | extern char _heap; |
|
- | 55 | static void test_sbrk(void) |
|
- | 56 | { |
|
- | 57 | printf("Writing to good memory\n"); |
|
- | 58 | printf("Got: %P\n", sbrk(120000)); |
|
- | 59 | printf("%P\n", ((char *)&_heap)); |
|
- | 60 | printf("%P\n", ((char *)&_heap) + 80000); |
|
- | 61 | *(((char *)&_heap) + 80000) = 10; |
|
- | 62 | printf("Making small, got: %P\n",sbrk(-120000)); |
|
- | 63 | printf("Testing access to heap\n"); |
|
- | 64 | _heap = 10; |
|
- | 65 | printf("Failing..\n"); |
|
- | 66 | *((&_heap) + 80000) = 10; |
|
- | 67 | ||
- | 68 | printf("memory done\n"); |
|
- | 69 | } |
|
- | 70 | */ |
|
- | 71 | ||
- | 72 | /* |
|
- | 73 | extern char _heap; |
|
- | 74 | static void test_malloc(void) |
|
- | 75 | { |
|
- | 76 | char *data; |
|
- | 77 | ||
- | 78 | data = malloc(10); |
|
- | 79 | printf("Heap: %P, data: %P\n", &_heap, data); |
|
- | 80 | data[0] = 'a'; |
|
- | 81 | free(data); |
|
- | 82 | } |
|
- | 83 | */ |
|
32 | 84 | ||
33 | int main(int argc, char *argv[]) |
85 | int main(int argc, char *argv[]) |
34 | { |
86 | { |
35 | version_print(); |
87 | version_print(); |
36 | 88 |