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

Table Of Contents
Open System Services Porting Guide520573-006
1-1
1 Introduction to Porting
This section provides an introduction to porting applications to the HP NonStop Open
System Services (OSS) environment and contains these topics:
Overview of Porting on page 1-1
Overview of the OSS Environment on page 1-7
Overview of Porting
The porting process is simple:
1. Clean up code; remove architectural dependencies and nonstandard practices.
2. Compile code.
3. Fix problems found at compile time.
4. Fix segment faults and unaligned accesses. Unaligned accesses are almost
always an indication that logic in the code is incorrect.
5. Recompile the code and repeat the process, if necessary.
Use the information given in the following subsections when you consider porting an
application to the OSS environment:
Porting Requires Good Coding Practices on page 1-1
You Should Use Portable Application Templates on page 1-1
Porting Is Easier When Standards Are Used on page 1-2
Porting Requires Good Coding Practices
Much of the material in this guide is not specific to any one vendor, nor is it specific to
Open System Services. It is simply good, standard coding practice. Commercial texts
that cover similar ground are available. These texts include:
The C Programming Language, Second Edition, by Brian W. Kernighan and
Dennis M. Ritchie; Prentice-Hall Software Series, Prentice-Hall, Inc.
Portable C and UNIX System Programming, by J.E.Lapin; Prentice-Hall Software
Series, Prentice-Hall, Inc.
C Traps and Pit Falls, by Andrew Koenig; Addison-Wesley Publishing Company
For more guidelines on following good programming practices, refer to the C/C++
Programmers Guide. Additional commercial texts that describe how to write portable
applications in C are listed under Related Reading on page xv.
You Should Use Portable Application Templates
In general, the more you follow good programming practices, the easier it will be to port
your program to other hardware and software environments. An important