From: oes Date: Sun, 29 Jul 2001 12:17:48 +0000 (+0000) Subject: Applied pthread fix by Paul Lieverse X-Git-Tag: v_2_9_9~200 X-Git-Url: http://www.privoxy.org/gitweb/%22https:/faq/@default-cgi@toggle?a=commitdiff_plain;h=536435bf44c5129406aa55ea4ab7ac1dcb07b39e;p=privoxy.git Applied pthread fix by Paul Lieverse --- diff --git a/jcc.c b/jcc.c index d628d390..630aedae 100644 --- a/jcc.c +++ b/jcc.c @@ -1,4 +1,4 @@ -const char jcc_rcs[] = "$Id: jcc.c,v 1.29 2001/07/24 12:47:06 oes Exp $"; +const char jcc_rcs[] = "$Id: jcc.c,v 1.30 2001/07/25 22:57:13 jongfoster Exp $"; /********************************************************************* * * File : $Source: /cvsroot/ijbswa/current/jcc.c,v $ @@ -33,6 +33,11 @@ const char jcc_rcs[] = "$Id: jcc.c,v 1.29 2001/07/24 12:47:06 oes Exp $"; * * Revisions : * $Log: jcc.c,v $ + * Revision 1.30 2001/07/25 22:57:13 jongfoster + * __BEOS__ no longer overrides FEATURE_PTHREAD. + * This is because FEATURE_PTHREAD will soon be widely used, so I + * want to keep it simple. + * * Revision 1.29 2001/07/24 12:47:06 oes * Applied BeOS support update by Eugenia * @@ -1388,6 +1393,7 @@ static void listen_loop(void) pthread_attr_t attrs; pthread_attr_init(&attrs); + pthread_attr_setdetachstate(&attrs, PTHREAD_CREATE_DETACHED); child_id = (pthread_create(&the_thread, &attrs, (void*)serve, csp) ? -1 : 0); pthread_attr_destroy(&attrs);