HP OpenVMS Systems

Ask the Wizard
» 

HP OpenVMS Systems

OpenVMS information

» What's new on our site
» Upcoming events
» Configuration and buying assistance
» Send us your comments

HP OpenVMS systems

» OpenVMS software
» Supported Servers
» OpenVMS virtualization
» OpenVMS solutions and partners
» OpenVMS success stories
» OpenVMS service and support
» OpenVMS resources and information
» OpenVMS documentation
» Education and training

Quick Links

» Non-javascript page
» Ask the Wizard
» OpenVMS FAQ

Test Drive OpenVMS

» OpenVMS I64 test drive
» Java test drive

Other information resources available to you include:

» OpenVMS freeware
» ECO kits, software and hardware support, prior version support
» Alpha SRM, ARC, and AlphaBIOS firmware updates
» ENCOMPASS - HP user group
» OpenVMS software downloads, OpenVMS freeware CD-ROM
» OpenVMS firmware locations
» DECconnect passive adaptor charts
» Cables reference guide
» MicroVAX console commands
» OpenVMS student research

Select a topic below to see Questions Frequently Asked by partners

» Using the online documentation library(installing BNU from the asap SDK)
» Global sections(how to create and use.)
» xx$CREATE_BUFOBJ system service(usage)
» Ethernet address(methods of determination)
» Shareable images(cookbook approach to creating one)
» Sharing data/code at absolute addresses(a guide with examples)
» Determining the Alpha microprocessor
» Using GETSYI to get hardware status

Evolving business value

» Business Systems Evolution
» AlphaServer systems transition planning
» Alpha RetainTrust program

Related links

» HP Integrity servers
» HP Alpha systems
» HP storage
» HP software
» HP products and services
» HP solutions
» HP support
disaster proof
HP Integrity server animation
HP Integrity server animation
Content starts here

$CRMPSC and $CREATE services

The $CRMPSC system service creates a process-private or global section and maps it into process address space.The options or flags that determine its actions are described in the OpenVMS System Services Reference Manual

The $CREATE RMS service can be used to create a new file, or to open an existing file.The options and flags that determine its operation are described in the OpenVMS Record Management Services (RMS) Reference Manual.

The example code uses $CREATE with the User File Open (FAB$M_UFO) option and various file sharing options, and then uses $CRMPSC to map the contents of the file as a global section into image virtual address space (twice). The code then demonstrates some basic operations on the section: data is written into the first range of virtual address space where the section is mapped, and then read back in via the second range.

The $UPDSEC system service (not shown) would then be used at appropriate intervals; the call will flush the contents of the section from memory back to the backing storage file on disk.

For information on synchronizing and interlocking access to shared memory sections among multiple writing processes, see the data synchronization and lock manager synchronization chapters, as well as the memory management chapters, in the OpenVMS Programming Concepts manual.

» Code Example