Initializes the runtime.
#include <prinit.h> void PR_Init( PRThreadType type, PRThreadPriority priority, PRUintn maxPTDs);
PR_Init
has the following parameters:
type
priority
maxPTDs
NSPR is now implicitly initialized, usually by the first NSPR function called by a program. PR_Init
is necessary only if a program has specific initialization-sequencing requirements.
Call PR_Init
as follows:
PR_Init(PR_USER_THREAD, PR_PRIORITY_NORMAL, 0);