Compare commits
2 commits
1c720eaca3
...
cda29dd317
Author | SHA1 | Date | |
---|---|---|---|
ari melody | cda29dd317 | ||
ari melody | aa8d58a5db |
22
README.md
22
README.md
|
@ -4,20 +4,20 @@ it allocates memory
|
||||||
|
|
||||||
## how to use
|
## how to use
|
||||||
|
|
||||||
- run the executable
|
```
|
||||||
- enter how much memory you want to allocate
|
usage: allocatememory -b <bytes> [-o <output file>] [-s]
|
||||||
- i.e. "1g" = 1 GiB = 1073741824 bytes
|
|
||||||
- the limit is how much memory you have...or more. your funeral.
|
OPTIONS
|
||||||
- confirm (y)
|
-h displays help
|
||||||
- wait for the program to allocate the memory
|
-b number of bytes to allocate (e.g. 1024, 1g, 64K)
|
||||||
- your memory is allocated
|
-o file to output to
|
||||||
- press ENTER or CTRL+C to free the memory and exit the program
|
-s run silently (requires -b and -o)
|
||||||
- ???
|
-w disable warnings ("i know what i'm doing!")
|
||||||
- profit
|
```
|
||||||
|
|
||||||
## how to compile
|
## how to compile
|
||||||
|
|
||||||
- get a c compiler (i use gcc)
|
- get a c compiler (i use gcc or clang)
|
||||||
- `gcc -o ./allocatememory -O2 ./main.c`
|
- `gcc -o ./allocatememory -O2 ./main.c`
|
||||||
- ???
|
- ???
|
||||||
- profit
|
- profit
|
||||||
|
|
23
main.c
23
main.c
|
@ -7,7 +7,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
#define BYTES_GIVEN 1
|
#define BYTES_GIVEN 1
|
||||||
#define FILENAME_GIVEN 2
|
#define OUTPUT_FILE 2
|
||||||
#define SILENT 4
|
#define SILENT 4
|
||||||
#define BYPASS_WARN 8
|
#define BYPASS_WARN 8
|
||||||
|
|
||||||
|
@ -52,7 +52,7 @@ int main(int argc, char* argv[]) {
|
||||||
break;
|
break;
|
||||||
case 'o':
|
case 'o':
|
||||||
filename = optarg;
|
filename = optarg;
|
||||||
flags |= FILENAME_GIVEN;
|
flags |= OUTPUT_FILE;
|
||||||
break;
|
break;
|
||||||
case 's':
|
case 's':
|
||||||
if (size == 0 || filename == NULL) {
|
if (size == 0 || filename == NULL) {
|
||||||
|
@ -100,6 +100,7 @@ int main(int argc, char* argv[]) {
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned long long int* heap = allocate_heap(size, flags & SILENT);
|
unsigned long long int* heap = allocate_heap(size, flags & SILENT);
|
||||||
|
if (filename != NULL) save_heap(heap, size, filename, flags & SILENT);
|
||||||
|
|
||||||
if (!(flags & SILENT)) {
|
if (!(flags & SILENT)) {
|
||||||
if (shorthand) {
|
if (shorthand) {
|
||||||
|
@ -115,10 +116,6 @@ int main(int argc, char* argv[]) {
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filename != NULL) save_heap(heap, size, filename, SILENT);
|
|
||||||
|
|
||||||
if (!(flags & SILENT)) printf("done!\n");
|
|
||||||
|
|
||||||
free(heap);
|
free(heap);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
@ -208,20 +205,6 @@ void save_heap(unsigned long long int* heap, unsigned long long int size, char*
|
||||||
printf("failed to open %s!", filename);
|
printf("failed to open %s!", filename);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!silent) printf("please wait...\n");
|
|
||||||
/*
|
|
||||||
for (unsigned long long int i = 0; i < size / sizeof(unsigned long long int); i++) {
|
|
||||||
for (int p = 0; p < 8; p++) {
|
|
||||||
fputc(*(&heap[i] + p), file);
|
|
||||||
}
|
|
||||||
if (i > 0 && i % (1024 * 1024 * 1024 / sizeof(long long int)) == 0) {
|
|
||||||
if (!silent) printf(".");
|
|
||||||
fflush(stdout);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!silent) printf("\n");
|
|
||||||
*/
|
|
||||||
fwrite(heap, sizeof(char), size, file);
|
fwrite(heap, sizeof(char), size, file);
|
||||||
fputs("\n", file);
|
fputs("\n", file);
|
||||||
fclose(file);
|
fclose(file);
|
||||||
|
|
Loading…
Reference in a new issue