mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-27 22:11:24 -04:00
25 lines
752 B
Plaintext
25 lines
752 B
Plaintext
$NetBSD: patch-ba,v 1.2 2013/07/20 08:57:20 ryoon Exp $
|
|
|
|
pthread_t may be 64-bit, avoid casting it.
|
|
|
|
--- nsprpub/pr/include/private/pprthred.h.orig 2009-11-02 22:43:08.000000000 +0100
|
|
+++ nspr/pr/include/private/pprthred.h
|
|
@@ -51,6 +51,8 @@
|
|
#include <os2.h>
|
|
#endif
|
|
|
|
+#include <pthread.h>
|
|
+
|
|
PR_BEGIN_EXTERN_C
|
|
|
|
/*---------------------------------------------------------------------------
|
|
@@ -91,7 +93,7 @@ NSPR_API(void) PR_DetachThread(void);
|
|
** Get the id of the named thread. Each thread is assigned a unique id
|
|
** when it is created or attached.
|
|
*/
|
|
-NSPR_API(PRUint32) PR_GetThreadID(PRThread *thread);
|
|
+NSPR_API(pthread_t) PR_GetThreadID(PRThread *thread);
|
|
|
|
/*
|
|
** Set the procedure that is called when a thread is dumped. The procedure
|