You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by rj...@apache.org on 2013/05/11 09:42:04 UTC

svn commit: r1481263 - in /apr/apr/branches/1.5.x: ./ threadproc/unix/thread.c

Author: rjung
Date: Sat May 11 07:42:04 2013
New Revision: 1481263

URL: http://svn.apache.org/r1481263
Log:
Use correct pthread constant.

Backport of r1481262 from trunk.

Modified:
    apr/apr/branches/1.5.x/   (props changed)
    apr/apr/branches/1.5.x/threadproc/unix/thread.c

Propchange: apr/apr/branches/1.5.x/
------------------------------------------------------------------------------
  Merged /apr/apr/trunk:r1481262

Modified: apr/apr/branches/1.5.x/threadproc/unix/thread.c
URL: http://svn.apache.org/viewvc/apr/apr/branches/1.5.x/threadproc/unix/thread.c?rev=1481263&r1=1481262&r2=1481263&view=diff
==============================================================================
--- apr/apr/branches/1.5.x/threadproc/unix/thread.c (original)
+++ apr/apr/branches/1.5.x/threadproc/unix/thread.c Sat May 11 07:42:04 2013
@@ -96,7 +96,7 @@ APR_DECLARE(apr_status_t) apr_threadattr
 #else
     pthread_attr_getdetachstate(&attr->attr, &state);
 #endif
-    if (state == 1)
+    if (state == PTHREAD_CREATE_DETACHED)
         return APR_DETACH;
     return APR_NOTDETACH;
 }