Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

PR_Init

Initializes the runtime.

Syntax

#include <prinit.h>

void PR_Init(
  PRThreadType type, 
  PRThreadPriority priority, 
  PRUintn maxPTDs);

Parameters

PR_Init has the following parameters:

type
This parameter is ignored.
priority
This parameter is ignored.
maxPTDs
This parameter is ignored.

Description

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);

Document Tags and Contributors

 Contributors to this page: teoli, Wtchang, Rappo
 Last updated by: teoli,