Skip to content
Surf Wiki
Save to docs
general/application-programming-interfaces

From Surf Wiki (app.surf) — the open knowledge base

Netscape Portable Runtime

C programming language library


C programming language library

FieldValue
nameNetscape Portable Runtime
latest release version
latest release date
programming languageC
developerMozilla Foundation / Mozilla Corporation
operating systemCross-platform
genreSoftware library
licenseMPL
website

The Netscape Portable Runtime, or NSPR, is a cross-platform abstraction layer library for the C programming language. It provides a uniform API for various operating system functions.

History

NSPR was originally designed to provide a base for the Java virtual machine in Netscape 5. Over time, it was extended to allow support for additional functionality used for Netscape's server and client software. NSPR continues to be used today by Firefox as well as many of Oracle and Red Hat's server products.

Features

Threads

NSPR provides a thread API. It uses the OS's threading capabilities where possible. It also provides support for sharing memory between threads, as well as creating and using thread pools. Locks, atomics, semaphores, and both cached and uncached monitors are provided.

I/O

NSPR provides functions for working with files, directories, anonymous pipes and network sockets.

Network addresses

NSPR defines an IP-centric network address object. Functions are provided to translate ASCII strings (DNS names) into NSPR's network address structures, regardless of whether the addressing technology uses IPv4 or IPv6.

Time

NSPR makes timing facilities available in two forms: interval timing and calendar functions.

Interval timers are based on a free-running 32-bit resolution timer. Their epoch and interval can be set as needed.

Calendar times are represented using 64-bit signed Unix time. NSPR provides functions for manipulating and converting timestamps.

Memory management

NSPR provides API to perform the basic malloc, calloc, realloc and free functions. Depending on the platform, the functions may be implemented almost entirely in the NSPR runtime or simply shims that call immediately into the host operating system's offerings.

Linking

Support for linking (shared library loading and unloading) forms part of NSPR's feature set. In most cases, this is simply a smoothing over of the facilities offered by the various platform providers.

Data structures

NSPR provides implementations of a circular linked list and a hash table.

References

References

  1. "NSPR". Mozilla.
  2. Larry H.. "About NSPR". Mozilla.
  3. "NSPR API Reference". Mozilla.
Info: Wikipedia Source

This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page.

Want to explore this topic further?

Ask Mako anything about Netscape Portable Runtime — get instant answers, deeper analysis, and related topics.

Research with Mako

Free with your Surf account

Content sourced from Wikipedia, available under CC BY-SA 4.0.

This content may have been generated or modified by AI. CloudSurf Software LLC is not responsible for the accuracy, completeness, or reliability of AI-generated content. Always verify important information from primary sources.

Report