Overview
| Comment: | Freecolor 0.9.3 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | trunk | 0.9.3 |
| Files: | files | file ages | folders |
| SHA1: |
2b82884fdbb283bb4b8e18d86a8ee0d2 |
| User & Date: | rkeene on 2016-01-26 01:14:07.952 |
| Other Links: | manifest | tags |
Context
|
2016-01-26
| ||
| 01:14 | Freecolor 0.9.3 Leaf check-in: 2b82884fdb user: rkeene tags: trunk, 0.9.3 | |
| 01:08 | Updated to use fixed-width types and use the "mem_units" member if it is available check-in: 648d0caff0 user: rkeene tags: trunk | |
Changes
Modified freecolor.c
from [5a5dbca4b4]
to [9c16de2725].
| ︙ | ︙ | |||
48 49 50 51 52 53 54 | #include <stdlib.h> #include <stdio.h> #ifndef NO_GETOPT #include <getopt.h> #endif #define BARLEN 35 #define HEADERLEN 14 | | | 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 |
#include <stdlib.h>
#include <stdio.h>
#ifndef NO_GETOPT
#include <getopt.h>
#endif
#define BARLEN 35
#define HEADERLEN 14
#define VERSION "0.9.3"
extern char *optarg;
extern int optind, opterr, optopt;
struct freecolor_meminfo {
uint64_t totalram; /* Total usable main memory size */
uint64_t freeram; /* Available memory size */
|
| ︙ | ︙ |