r=edburns
Author = snizinsk@us.ibm.com

bug: http://bugzilla.mozilla.org/show_bug.cgi?id=34762

Use PR_CALLBACK on thread_starter


git-svn-id: svn://10.0.0.236/trunk@65418 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
edburns%acm.org 2000-04-06 04:20:32 +00:00
parent 578e7970d0
commit afc4214e74

View File

@ -18,6 +18,19 @@
* Rights Reserved.
*
* Contributor(s):
*
*
* This Original Code has been modified by IBM Corporation.
* Modifications made by IBM described herein are
* Copyright (c) International Business Machines
* Corporation, 2000
*
* Modifications to Mozilla code or documentation
* identified per MPL Section 3.3
*
* Date Modified by Description of modification
* 03/27/2000 IBM Corp. Added PR_CALLBACK for Optlink
* use in OS2
*/
////////////////////////////////////////////////////////////////////////////////
@ -177,7 +190,7 @@ nsJVMManager::NotifyAll(void* address)
return (PR_CNotifyAll(address) == PR_SUCCESS ? NS_OK : NS_ERROR_FAILURE);
}
static void thread_starter(void* arg)
static void PR_CALLBACK thread_starter(void* arg)
{
nsIRunnable* runnable = (nsIRunnable*) arg;
if (runnable != NULL) {