Open System Services Porting Guide (G06.24+, H06.03+)

Table Of Contents
OSS Porting Considerations
Open System Services Porting Guide520573-006
6-5
Using Sockets
For a discussion of interprocess communication between Guardian and OSS
processes, refer to the Open System Services Programmer’s Guide. It includes
interoperability tables, listing Guardian procedures and OSS functions that support
interoperability between the Guardian and OSS environments.
Traditional UNIX applications on shared memory systems are often written using the
assumption that process creation and interprocess communication (IPC) are relatively
cheap operations. These applications commonly have a server process that uses
fork() to create a child process for each work request; the parent and child
processes communicate using an IPC mechanism. Given the shared-nothing
architecture of the NonStop system, operations such as process creation and IPC
might use significantly more processor resources when a UNIX application is ported
without change. Refer to Porting Servers and Demons on page 6-23 for a discussion of
this situation.
Using Sockets
A socket is an end-point for communication between two processes. A socket is similar
to a file in that a process can create a socket, write data to it, read data from it, and
close it without regard to its underlying operations. Sockets are the most widely used
application program interface (API) for communication between processes running on
different systems.
The Guardian version of sockets was implemented for the versions of UNIX systems
developed at the University of California, Berkeley, by the Berkeley Software
Distribution (BSD) group. These sockets are often referred to as “Berkeley sockets” or
“BSD sockets.”
OSS sockets are based on BSD sockets (the OSS sockets interface is based on BSD
4.3 for AF_INET and AF_INET6, and BSD 4.3+ for AF_UNIX), but OSS sockets also
include limited extensions based on the X/Open XPG4 specification. The differences
between OSS sockets and BSD and Guardian sockets are discussed in Section 11,
Porting or Migrating Sockets Applications.
OSS sockets involve multiple system processes in the data path for each message,
even if both ends of the connection are on the same processor; as a result, the socket
OSS shared memory
(with OSS processes only)
Yes No No No
OSS semaphores
(with OSS processes only)
Yes No No No
$RECEIVE Yes Yes Yes No
Table 6-3. Interprocess Communication using OSS and Guardian
APIs (page2of2)
IPC method
Within a
processor
Between
processors
Between
Expand nodes
With other
systems