DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24989>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=24989 Porting ThreadSafe sample to Unix platforms ------- Additional Comments From [EMAIL PROTECTED] 2004-01-06 22:56 ------- In my experience, doing a join on each of the individual threads is standard for simple "thread pool" implementations. pthread_join() will return immediately if the thread is complete, otherwise it will wait. It has the same effect as waiting for each thread to return before continuing. pthread_join() will return an non-zero value if the join was not successful.
