The following functions should return size_t:
```
static julong available_memory();
static julong used_memory();
static julong free_memory();
static jlong total_swap_space();
static jlong free_swap_space();
static julong physical_memory();
```
part of the task is to make sure this builds on 32-bit (as long as we still need it)
```
static julong available_memory();
static julong used_memory();
static julong free_memory();
static jlong total_swap_space();
static jlong free_swap_space();
static julong physical_memory();
```
part of the task is to make sure this builds on 32-bit (as long as we still need it)