]> Zhao Yanbai Git Server - minix.git/commitdiff
*** empty log message ***
authorJorrit Herder <jnherder@minix3.org>
Tue, 19 Jul 2005 14:03:21 +0000 (14:03 +0000)
committerJorrit Herder <jnherder@minix3.org>
Tue, 19 Jul 2005 14:03:21 +0000 (14:03 +0000)
kernel/system/do_nice.c [moved from kernel/system/do_schedctl.c with 91% similarity]

similarity index 91%
rename from kernel/system/do_schedctl.c
rename to kernel/system/do_nice.c
index 08a0a5fa84db17a9790bcbbfae4c9c3c6f6e24d9..eaa539e022e7ea7dc204c284f278aa3034f25b41 100644 (file)
@@ -1,5 +1,5 @@
 /* The system call implemented in this file:
- *   m_type:   SYS_SCHEDCTL
+ *   m_type:   SYS_NICE
  *
  * The parameters for this system call are:
  *    m1_i1:   PR_PROC_NR      process number to change priority
 #include <minix/type.h>
 #include <sys/resource.h>
 
-#if USE_SCHEDCTL
+#if USE_NICE
 
 /*===========================================================================*
- *                             do_schedctl                                  *
+ *                               do_nice                                    *
  *===========================================================================*/
-PUBLIC int do_schedctl(message *m_ptr)
+PUBLIC int do_nice(message *m_ptr)
 {
   int proc_nr, pri, new_q ;
   register struct proc *rp;
@@ -46,5 +46,5 @@ PUBLIC int do_schedctl(message *m_ptr)
   return(OK);
 }
 
-#endif /* USE_SCHEDCTL */
+#endif /* USE_NICE */