From d5ddeb8155da205687aa9ff86bd0331ddbd815f2 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Mon, 3 Oct 2005 14:24:11 +0000 Subject: [PATCH] Al's comment fixes. --- kernel/main.c | 2 +- kernel/proc.c | 2 +- kernel/system.c | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/kernel/main.c b/kernel/main.c index 7f9c0a2a5..3f542f777 100755 --- a/kernel/main.c +++ b/kernel/main.c @@ -193,7 +193,7 @@ int how; register struct proc *rp; message m; - /* Show debugging dumps on panics. Make sure that the TTY task is still + /* Show debugging dumps on panics. Make sure that the TTY driver is still * available to handle them. This is done with help of a non-blocking send. * We rely on TTY to call sys_abort() when it is done with the dumps. */ diff --git a/kernel/proc.c b/kernel/proc.c index f91e80b17..d613ed8ee 100755 --- a/kernel/proc.c +++ b/kernel/proc.c @@ -546,7 +546,7 @@ PRIVATE void pick_proc() int q; /* iterate over queues */ /* Check each of the scheduling queues for ready processes. The number of - * queues is defined in proc.h, and priorities are set in the task table. + * queues is defined in proc.h, and priorities are set in the image table. * The lowest queue contains IDLE, which is always ready. */ for (q=0; q < NR_SCHED_QUEUES; q++) { diff --git a/kernel/system.c b/kernel/system.c index 5019dd94e..c54ec3bbd 100755 --- a/kernel/system.c +++ b/kernel/system.c @@ -1,8 +1,8 @@ -/* This task handles the interface between the kernel and user-level servers. - * System services can be accessed by doing a system call. System calls are - * transformed into request messages, which are handled by this task. By - * convention, a sys_call() is transformed in a SYS_CALL request message that - * is handled in a function named do_call(). +/* This task handles the interface between the kernel and user-space system + * processes. System services can be accessed by doing a system call. System + * calls are transformed into request messages, which are handled by this + * task. By convention, a sys_call() is transformed in a SYS_CALL request + * message that is handled in a function named do_call(). * * A private call vector is used to map all system calls to the functions that * handle them. The actual handler functions are contained in separate files -- 2.44.0