diff options
| -rw-r--r-- | sys/src/9/port/proc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/src/9/port/proc.c b/sys/src/9/port/proc.c index dc15b47b0..48c318c97 100644 --- a/sys/src/9/port/proc.c +++ b/sys/src/9/port/proc.c @@ -1378,13 +1378,14 @@ kproc(char *name, void (*func)(void *), void *arg) memset(p->time, 0, sizeof(p->time)); p->time[TReal] = MACHP(0)->ticks; ready(p); + /* * since the bss/data segments are now shareable, * any mmu info about this process is now stale * and has to be discarded. - */ p->newtlb = 1; flushmmu(); + */ } /* |
