yesterday I killed my "fs" process which is responsible for the
filesystem component of minix. I was thinking it will be again
restarted by Reincarnation Server. But surprisingly I got an error
saying that execv failed and /sbin/fs not found !!
once fs is stopped, how we can proceed to fetch a file from file system
??
Is this the reason I got the error ?
If so what is the scope of Reincarnation Server ?
Thanks
Srinu
Also, killing 'pm' kills your system because Minix 3 no longer "knows"
what a process is, and is thus unable to use 'rs' (nor can it give CPU
time to any processes, since there is no longer a such thing as a
"process", in a sense). Killing 'pm' subsequently kills all processes in
both the sense of parent-child process semantics of traditional UNIX,
and also in the sense that there is nothing to manage their execution
contexts, or to give processes execution contexts in the first place.
Yes, user-mode processes are managed and timesliced by... a user-mode
process. In one sense, this is extremely idiosyncratic, but in another,
it makes perfect sense.
Hope that helps.
If I got ANY of this wrong, please correct it. Remember, to err is to be
human...