]> Zhao Yanbai Git Server - minix.git/commitdiff
Fixed some compiler breakage (MM_PROC_NR renamed)
authorBen Gras <ben@minix3.org>
Tue, 3 May 2005 08:54:01 +0000 (08:54 +0000)
committerBen Gras <ben@minix3.org>
Tue, 3 May 2005 08:54:01 +0000 (08:54 +0000)
kernel/system/old/do_getsig.c
kernel/system/old/do_svrctl.c

index f2a9897c27b0bcc6936dbd3b7e24aace075e1747..473486f0f39f18b83030e6e9af8c450f36803872 100644 (file)
@@ -25,7 +25,7 @@ message *m_ptr;                       /* pointer to the request message */
   register struct proc *rp;
 
   /* Only the MM is allowed to request pending signals. */
-  if (m_ptr->m_source != MM_PROC_NR)
+  if (m_ptr->m_source != PM_PROC_NR)
        return(EPERM);
 
   /* Find the next process with pending signals. */
index e7653b9148b44a86199af46b926c6c793c60349d..cbaa59c33fe7a02d2701e3089dba6d2cf87282ef 100644 (file)
@@ -53,7 +53,7 @@ message *m_ptr;                       /* pointer to request message */
        rp->p_type = P_SERVER;
        rp->p_sendmask = ALLOW_ALL_MASK;
        send_mask_allow(proc_addr(RTL8139)->p_sendmask, proc_nr);
-       send_mask_allow(proc_addr(MM_PROC_NR)->p_sendmask, proc_nr);
+       send_mask_allow(proc_addr(PM_PROC_NR)->p_sendmask, proc_nr);
        send_mask_allow(proc_addr(FS_PROC_NR)->p_sendmask, proc_nr);
        send_mask_allow(proc_addr(IS_PROC_NR)->p_sendmask, proc_nr);
        send_mask_allow(proc_addr(CLOCK)->p_sendmask, proc_nr);