You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by na...@apache.org on 2010/01/08 10:15:53 UTC

svn commit: r897138 - /webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c

Author: nandika
Date: Fri Jan  8 09:15:52 2010
New Revision: 897138

URL: http://svn.apache.org/viewvc?rev=897138&view=rev
Log:
warning in macos fixed

Modified:
    webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c

Modified: webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c?rev=897138&r1=897137&r2=897138&view=diff
==============================================================================
--- webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c (original)
+++ webservices/axis2/trunk/c/util/src/platforms/unix/thread_unix.c Fri Jan  8 09:15:52 2010
@@ -168,7 +168,7 @@
             same_thread = pthread_equal(pthread_self(), *thd->td);
             if(!same_thread)
             {
-                pthread_kill(thd->td, 0);
+                pthread_kill(*(thd->td), 0);
                 axutil_thread_join(thd);
             }
             AXIS2_FREE(allocator, thd->td);