git: 9front

Download patch

ref: 26dd93293cba736fe143c4d25a867a5f2c0fbfe6
parent: eeab4d2f29d6ab40b3c3de9b089da75df9dfb471
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon May 25 09:03:45 EDT 2015

thread(2): fix prototype for threadint() and threadkillgrp() (thanks qwx!)

--- a/sys/man/2/thread
+++ b/sys/man/2/thread
@@ -95,10 +95,10 @@
 int	threadsetgrp(int group)
 int	threadpid(int id)
 .XX
-int	threadint(int id)
+void	threadint(int id)
 void	threadintgrp(int group)
 void	threadkill(int id)
-int	threadkillgrp(int group)
+void	threadkillgrp(int group)
 .XX
 void	threadsetname(char *name, ...)
 char*	threadgetname(void)
--