Remove legacy MM, FS, and FS_PROC_NR macros

This commit is contained in:
Arun Thomas
2010-06-08 13:58:01 +00:00
parent 7bd7946346
commit 4c10a31440
114 changed files with 152 additions and 155 deletions

View File

@@ -23,8 +23,6 @@
#include <minix/ipc.h>
#define MM PM_PROC_NR
#define FS FS_PROC_NR
_PROTOTYPE( int __execve, (const char *_path, char *const _argv[],
char *const _envp[], int _nargs, int _nenvps) );

View File

@@ -64,8 +64,7 @@
/* User-space processes, that is, device drivers, servers, and INIT. */
#define PM_PROC_NR ((endpoint_t) 0) /* process manager */
#define FS_PROC_NR ((endpoint_t) 1) /* file system */
#define VFS_PROC_NR FS_PROC_NR /* FS has been renamed to VFS. */
#define VFS_PROC_NR ((endpoint_t) 1) /* file system */
#define RS_PROC_NR ((endpoint_t) 2) /* reincarnation server */
#define MEM_PROC_NR ((endpoint_t) 3) /* memory driver (RAM disk, null, etc.) */
#define LOG_PROC_NR ((endpoint_t) 4) /* log device driver */