]> git.lizzy.rs Git - plan9front.git/blob - sys/src/cmd/7l/sched.c
abaco: cleanup, handle image/x-icon, don't use backspace as a hotkey, and remove...
[plan9front.git] / sys / src / cmd / 7l / sched.c
1 #include        "l.h"
2
3 void
4 sched(Prog *p0, Prog *p1)
5 {
6 #ifdef  CODSCHED
7         Prog *p, *q, *t;
8         int r, a;
9
10         if(debug['X'])
11                 Bprint(&bso, "\n");
12 #endif
13         if (p0 == P || p0 == p1)
14                 return;
15         if(debug['X'])
16                 Bprint(&bso, "sched from %P to %P\n", p0, p1);
17 }
18