z/OS MVS Programming: Extended Addressability Guide
Previous topic | Next topic | Contents | Contact z/OS | Library | PDF


Creating a non-shared or shared standard hiperspace

z/OS MVS Programming: Extended Addressability Guide
SA23-1394-00

The HSTYPE parameter tells the system which kind of hiperspace you want to create. HSTYPE=SCROLL identifies the standard hiperspace, the kind of hiperspace that your program can scroll through. HSTYPE=SCROLL is the default.

SHARE=YES specifies a shared standard hiperspace; SHARE=NO, the default, specifies a non-shared standard hiperspace.

Example of Creating a Standard Hiperspace™

The following example creates a non-shared standard hiperspace:
*
         DSPSERV CREATE,NAME=HSNAME,TYPE=HIPERSPACE,HSTYPE=SCROLL,   X
               BLOCKS=20,STOKEN=HSSTOKEN,ORIGIN=HSORG
*
HSNAME   DC   CL8'SCROLLHS'         * NAME FOR THE HIPERSPACE
HSSTOKEN DS   CL8                   * STOKEN OF THE HIPERSPACE
HSORG    DS   F                     * HIPERSPACE ORIGIN

Go to the previous page Go to the next page




Copyright IBM Corporation 1990, 2014