blob: c66324dcf650ca69054aee332c623c167057273e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#include "types.h"
#include "riscv.h"
#include "param.h"
#include "spinlock.h"
#include "defs.h"
#include "sysinfo.h"
#include "proc.h"
// Get current system info
// addr is a user virtual address, pointing to a struct sysinfo.
int
sys_info(uint64 addr) {
struct proc *p = myproc();
struct sysinfo info;
// Fill nums into the sysinfo struct
info.freemem = get_freemem();
info.nproc = get_nproc();
if(copyout(p->pagetable, addr, (char *)&info, sizeof(info)) < 0)
return -1;
return 0;
}
|