After a closer look at the commits... attached patch solves the problem:

Index: trunk/cegcc/src/w32api/include/kfuncs.h
===================================================================
--- trunk/cegcc/src/w32api/include/kfuncs.h     (révision 1275)
+++ trunk/cegcc/src/w32api/include/kfuncs.h     (copie de travail)
@@ -73,12 +73,12 @@
 
 static inline BOOL ResetEvent (HANDLE x)
 {
-  return EventModify(x, EVENT_PULSE);
+  return EventModify(x, EVENT_RESET);
 }
 
 static inline BOOL SetEvent (HANDLE x)
 {
-  return EventModify(x, EVENT_PULSE);
+  return EventModify(x, EVENT_SET);
 }
 
 /* TLS Constants and Constructs */


Regards,

-- 
Pierre Ynard
"Une âme dans un corps, c'est comme un dessin sur une feuille de papier."

------------------------------------------------------------------------------
Crystal Reports - New Free Runtime and 30 Day Trial
Check out the new simplified licensing option that enables 
unlimited royalty-free distribution of the report engine 
for externally facing server and web deployment. 
http://p.sf.net/sfu/businessobjects
_______________________________________________
Cegcc-devel mailing list
Cegcc-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/cegcc-devel

Reply via email to