Overview
Comment: | Freecolor 0.9.0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk | 0.9.0 |
Files: | files | file ages | folders |
SHA1: |
9a61fdc3b3ceef6e9ea0a56ec4f34619 |
User & Date: | rkeene on 2014-01-21 00:32:11 |
Other Links: | manifest | tags |
Context
2014-01-21
| ||
00:35 | Install man page check-in: 9d68ed9edd user: rkeene tags: trunk | |
00:32 | Freecolor 0.9.0 check-in: 9a61fdc3b3 user: rkeene tags: trunk, 0.9.0 | |
00:31 | Updated to attempt to free allocated memory from statgrab check-in: eec9ca6159 user: rkeene tags: trunk | |
Changes
Modified freecolor.c from [51a20f4879] to [a1b835e7c8].
︙ | ︙ | |||
62 63 64 65 66 67 68 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 | | | 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 #define VERSION "0.9.0" extern char *optarg; extern int optind, opterr, optopt; struct freecolor_meminfo { unsigned long totalram; /* Total usable main memory size */ unsigned long freeram; /* Available memory size */ |
︙ | ︙ |