Getting Started
Working On Firefox
Firefox User Guide
Source Code Documentation
The Firefox Build System
Testing & Test Infrastructure
Releases & Updates
Localization & Internationalization
Firefox and Python
Metrics Collected in Firefox
Initializes the runtime.
#include <prinit.h> void PR_Init( PRThreadType type, PRThreadPriority priority, PRUintn maxPTDs);
PR_Init has the following parameters:
type
This parameter is ignored.
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);