ff57234978
work for some users (sparc64 support, for example, is busted and won't appear again until firefox-5.0).
19 lines
653 B
Text
19 lines
653 B
Text
$NetBSD: patch-az,v 1.1.1.1 2011/04/19 11:16:08 tnn Exp $
|
|
|
|
--- nsprpub/pr/src/pthreads/ptthread.c.orig 2009-11-02 22:43:08.000000000 +0100
|
|
+++ 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
|
|
}
|
|
|