git: 9front

Download patch

ref: 5af4ed53995c8a903de36846e4be03284e429c65
parent: cdb9de94c4e4d40a84c77f1042d60e27103cf1b7
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Jan 26 20:51:35 EST 2020

kernel: fix mistake from previous commit (noteid not being inherited by default)

--- a/sys/src/9/port/sysproc.c
+++ b/sys/src/9/port/sysproc.c
@@ -98,6 +98,7 @@
 	p->notified = 0;
 	p->lastnote = up->lastnote;
 
+	p->noteid = up->noteid;
 	p->parentpid = up->pid;
 	p->procmode = up->procmode;
 	p->privatemem = up->privatemem;
--