More cleanup to remove MM and FS references
This commit is contained in:
@@ -69,28 +69,28 @@
|
||||
#define REBOOT 76
|
||||
#define SVRCTL 77
|
||||
#define SYSUNAME 78
|
||||
#define GETSYSINFO 79 /* to PM or FS */
|
||||
#define GETSYSINFO 79 /* to PM, VFS, RS, or DS */
|
||||
#define GETDENTS 80 /* to FS */
|
||||
#define LLSEEK 81 /* to FS */
|
||||
#define FSTATFS 82 /* to FS */
|
||||
#define SELECT 85 /* to FS */
|
||||
#define FCHDIR 86 /* to FS */
|
||||
#define FSYNC 87 /* to FS */
|
||||
#define LLSEEK 81 /* to VFS */
|
||||
#define FSTATFS 82 /* to VFS */
|
||||
#define SELECT 85 /* to VFS */
|
||||
#define FCHDIR 86 /* to VFS */
|
||||
#define FSYNC 87 /* to VFS */
|
||||
#define GETPRIORITY 88 /* to PM */
|
||||
#define SETPRIORITY 89 /* to PM */
|
||||
#define GETTIMEOFDAY 90 /* to PM */
|
||||
#define SETEUID 91 /* to PM */
|
||||
#define SETEGID 92 /* to PM */
|
||||
#define TRUNCATE 93 /* to FS */
|
||||
#define FTRUNCATE 94 /* to FS */
|
||||
#define FCHMOD 95 /* to FS */
|
||||
#define FCHOWN 96 /* to FS */
|
||||
#define GETSYSINFO_UP 97 /* to PM or FS */
|
||||
#define TRUNCATE 93 /* to VFS */
|
||||
#define FTRUNCATE 94 /* to VFS */
|
||||
#define FCHMOD 95 /* to VFS */
|
||||
#define FCHOWN 96 /* to VFS */
|
||||
#define GETSYSINFO_UP 97 /* to PM or VFS */
|
||||
#define SPROF 98 /* to PM */
|
||||
#define CPROF 99 /* to PM */
|
||||
|
||||
/* Calls provided by PM and FS that are not part of the API */
|
||||
#define EXEC_NEWMEM 100 /* from FS or RS to PM: new memory map for
|
||||
#define EXEC_NEWMEM 100 /* from VFS or RS to PM: new memory map for
|
||||
* exec
|
||||
*/
|
||||
#define SRV_FORK 101 /* to PM: special fork call for RS */
|
||||
@@ -111,7 +111,7 @@
|
||||
*/
|
||||
#define SRV_KILL 111 /* to PM: special kill call for RS */
|
||||
|
||||
#define TASK_REPLY 121 /* to FS: reply code from drivers, not
|
||||
#define TASK_REPLY 121 /* to VFS: reply code from drivers, not
|
||||
* really a standalone call.
|
||||
*/
|
||||
#define MAPDRIVER 122 /* to FS, map a device */
|
||||
#define MAPDRIVER 122 /* to VFS, map a device */
|
||||
|
||||
@@ -15,8 +15,8 @@ Created: Feb 15, 1994 by Philip Homburg <philip@cs.vu.nl>
|
||||
#include <minix/ioctl.h>
|
||||
|
||||
/* PM controls. */
|
||||
#define MMGETPARAM _IOW('M', 5, struct sysgetenv)
|
||||
#define MMSETPARAM _IOR('M', 7, struct sysgetenv)
|
||||
#define PMGETPARAM _IOW('M', 5, struct sysgetenv)
|
||||
#define PMSETPARAM _IOR('M', 7, struct sysgetenv)
|
||||
|
||||
struct sysgetenv {
|
||||
char *key; /* Name requested. */
|
||||
|
||||
Reference in New Issue
Block a user