Commit Diff


commit - dfb3977d9cd63dc244a99450125c88d03c7b0acc
commit + 0a89a29f4ecbe046bb8e36ab18b34f5dec5a1352
blob - ffa8fca00f64b470b5186767e1ab6be14f92f909
blob + 75592ee9b216b2cd9b4a791199f3386fdfdb3023
--- include/thread.h
+++ include/thread.h
@@ -47,6 +47,7 @@ void	threaddaemonize(void);
  * per proc and thread data
  */
 void		**procdata(void);
+void		**threaddata(void);
 
 /*
  * supplied by user instead of main.
@@ -73,8 +74,8 @@ enum
 
 struct Alt
 {
-	void		*v;
 	Channel		*c;
+	void		*v;
 	uint		op;
 	_Thread		*thread;
 	Alt			*xalt;