shithub: mc

Download patch

ref: f02146462fb1d33442cb0068ae2519588675c9aa
parent: 718107741aaeebbdce0391d6080ada98428c2c86
author: Ori Bernstein <ori@eigenstate.org>
date: Fri Jun 22 17:44:46 EDT 2018

Missed a 9front semaphore fix.

--- a/lib/thread/sem+plan9.myr
+++ b/lib/thread/sem+plan9.myr
@@ -6,8 +6,8 @@
 
 pkg thread =
 	type sem = struct
-		_user : uint32
-		_kern : uint32
+		_user : int32
+		_kern : int32
 	;;
 
 	const mksem : (v : uint32 -> sem)