]> Zhao Yanbai Git Server - minix.git/commit
Rework getrusage(2) infrastructure 02/3202/1
authorDavid van Moolenbroek <david@minix3.org>
Sun, 27 Sep 2015 17:32:10 +0000 (17:32 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Mon, 28 Sep 2015 14:06:59 +0000 (14:06 +0000)
commitbc2d75fa05289d971b2669f2f8593daa1524eb58
tree972c065fedc52b79b42e67c5133d04028809c032
parent0f8e20a12ce891f0ea230592ef663a200f7166ca
Rework getrusage(2) infrastructure

- the userland call is now made to PM only, and PM relays the call to
  other servers as appropriate; this is an ABI change that will
  ultimately allow us to add proper support for wait3() and the like;
  for the moment there is backward compatibility;
- the getrusage-specific kernel subcall has been removed, as it
  provided only redundant functionality, and did not provide the means
  to be extended correctly in the future - namely, allowing the kernel
  to return different values depending on whether resource usage of
  the caller (self) or its children was requested;
- VM is now told whether resource usage of the caller (self) or its
  children is requested, and it refrains from filling in wrong values
  for information it does not have;
- VM now uses the correct unit for the ru_maxrss values;
- VFS is cut out of the loop entirely, since it does not provide any
  values at the moment; a comment explains how it should be readded.

Change-Id: I27b0f488437dec3d8e784721c67b03f2f853120f
19 files changed:
etc/system.conf
minix/commands/service/parse.c
minix/include/minix/callnr.h
minix/include/minix/com.h
minix/include/minix/ipc.h
minix/include/minix/syslib.h
minix/include/minix/vm.h
minix/kernel/system/do_getinfo.c
minix/lib/libc/sys/getrusage.c
minix/lib/libsys/Makefile
minix/lib/libsys/vm_getrusage.c [new file with mode: 0644]
minix/servers/pm/misc.c
minix/servers/vfs/misc.c
minix/servers/vfs/table.c
minix/servers/vm/utility.c
minix/tests/test75.c
minix/usr.bin/trace/service/pm.c
minix/usr.bin/trace/service/vfs.c
minix/usr.bin/trace/service/vm.c