527a7b26f2
www/seamonkey so devel/xulrunner can move forward to 1.9.2.
19 lines
665 B
Text
19 lines
665 B
Text
$NetBSD: patch-az,v 1.1 2010/03/16 10:59:10 tnn Exp $
|
|
|
|
--- mozilla/nsprpub/pr/src/pthreads/ptthread.c.orig 2009-11-02 22:43:08.000000000 +0100
|
|
+++ mozilla/nsprpub/pr/src/pthreads/ptthread.c
|
|
@@ -1089,12 +1089,12 @@ PR_IMPLEMENT(void) PR_ProcessExit(PRIntn
|
|
_exit(status);
|
|
}
|
|
|
|
-PR_IMPLEMENT(PRUint32) PR_GetThreadID(PRThread *thred)
|
|
+PR_IMPLEMENT(pthread_t) PR_GetThreadID(PRThread *thred)
|
|
{
|
|
#if defined(_PR_DCETHREADS)
|
|
return (PRUint32)&thred->id; /* this is really a sham! */
|
|
#else
|
|
- return (PRUint32)thred->id; /* and I don't know what they will do with it */
|
|
+ return thred->id; /* and I don't know what they will do with it */
|
|
#endif
|
|
}
|
|
|