Kernel: remove unused MF_ASYNMSG
This commit is contained in:
parent
d134121b09
commit
8b00ebde78
3 changed files with 0 additions and 3 deletions
|
@ -175,7 +175,6 @@ miscflagstr(const u32_t flags)
|
|||
str[0] = '\0';
|
||||
|
||||
FLAG(MF_REPLY_PEND);
|
||||
FLAG(MF_ASYNMSG);
|
||||
FLAG(MF_FULLVM);
|
||||
FLAG(MF_DELIVERMSG);
|
||||
FLAG(MF_KCALL_RESUME);
|
||||
|
|
|
@ -233,7 +233,6 @@ struct proc {
|
|||
We need to resume the kernel call execution
|
||||
now
|
||||
*/
|
||||
#define MF_ASYNMSG 0x010 /* Asynchrous message pending */
|
||||
#define MF_FULLVM 0x020
|
||||
#define MF_DELIVERMSG 0x040 /* Copy message for him before running */
|
||||
#define MF_SIG_DELAY 0x080 /* Send signal when no longer sending */
|
||||
|
|
|
@ -137,7 +137,6 @@ PRIVATE void adjust_proc_slot(struct proc *rp, struct proc *from_rp)
|
|||
rp->p_nr = from_rp->p_nr;
|
||||
rp->p_priv = from_rp->p_priv;
|
||||
priv(rp)->s_proc_nr = from_rp->p_nr;
|
||||
rp->p_misc_flags |= (from_rp->p_misc_flags & MF_ASYNMSG);
|
||||
rp->p_caller_q = from_rp->p_caller_q;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue