1 /* BEGIN INCLUDE FILE mtape_option_names.incl.pl1. Created by J. A. Bush 07/01/83 */ 2 /* format: style4 */ 3 4 /* mtape_ attach and common option names */ 5 6 dcl (DISPLAY init ("display"), /* display attach/open/close/detach description */ 7 ERROR init ("error"), /* display verbose error message */ 8 LABEL init ("label"), /* process labeled or unlabeled tapes */ 9 RING init ("ring"), /* write ring in or not */ 10 SYSTEM init ("system"), /* user requests to be system process */ 11 WAIT init ("wait"), /* wait/don't wait for a free device */ 12 DEFAULT_VOL_TYPE init ("default_volume_type"), /* for unspecified output */ 13 DENSITY init ("density"), /* recording density */ 14 DEVICE init ("device"), /* number of devices to remain attached */ 15 TRACK init ("track"), /* number of tracks (7 or 9) */ 16 VOL_TYPE init ("volume_type"), /* if other than default */ 17 WAIT_TIME init ("wait_time"), /* time to wait for free device (in minutes) */ 18 SPEED init ("speed"), /* device speeds that are acceptable */ 19 VOLUME init ("volume"), /* volume names in volume sequence list */ 20 COMMENT init ("comment") /* OPR comment for attach/detach, User commnet for open/close */ 21 ) char (20) varying int static options (constant); 22 23 /* mtape_ common open description option names */ 24 25 dcl (BLOCK init ("block"), /* requested block size in bytes */ 26 RECORD init ("record"), /* requested record size in bytes */ 27 DEFAULT_SPAN_RLEN init ("default_span_rlen"), /* Default record length, spanned records */ 28 DEFAULT_VAR_RLEN init ("default_var_rlen"), /* Default record length, variable records */ 29 DEFAULT_FIX_RLEN init ("default_fix_rlen"), /* Default record length, fixed records */ 30 NUMBER init ("number"), /* requested file sequence number */ 31 REPLACE init ("replace"), /* file identifier to replace */ 32 NAME init ("name"), /* file name/identifier */ 33 MODE init ("mode"), /* recording mode (ANSI, EBCDIC, BCD, or BINARY) */ 34 FORMAT init ("format"), /* file format (PFM specific) */ 35 EXPIRES init ("expires"), /* file expiration date */ 36 APPEND init ("append"), /* append file to end of file set */ 37 EXTEND init ("extend"), /* extend the identified file */ 38 FORCE init ("force"), /* over-write unexpired files with no query */ 39 LAST_FILE init ("last_file"), /* search for last file in file set */ 40 NEXT_FILE init ("next_file"), /* search for next file */ 41 MODIFY init ("modify"), /* modify the identified file */ 42 LABEL_ENTRY init ("label_entry") /* user label record processing entry */ 43 ) char (20) varying int static options (constant); 44 45 /* Per-Format module specific option names for open/close descriptions */ 46 47 dcl PFM_OPT_SW (5) char (20) varying int static options (constant) init 48 ("pfm_opt_sw_1", "pfm_opt_sw_2", "pfm_opt_sw_3", "pfm_opt_sw_4", "pfm_opt_sw_5"); 49 50 dcl PFM_OPT_VALUE (5) char (20) varying int static options (constant) init 51 ("pfm_opt_value_1", "pfm_opt_value_2", "pfm_opt_value_3", "pfm_opt_value_4", "pfm_opt_value_5"); 52 53 dcl PFM_OPT_STR (5) char (20) varying int static options (constant) init 54 ("pfm_opt_str_1", "pfm_opt_str_2", "pfm_opt_str_3", "pfm_opt_str_4", "pfm_opt_str_5"); 55 56 /* mtape_ common close position option names and detach option names */ 57 58 dcl (CLOSE_POSITION init ("close_position"), /* position on closing option */ 59 BOF init ("bof"), /* position to begininning of file on closing */ 60 EOF init ("eof"), /* position to end of file on closing */ 61 LEAVE init ("leave"), /* leave tape positioned as is on closing */ 62 REWIND init ("rewind") /* rewind/unload on detach */ 63 ) char (20) varying int static options (constant); 64 65 /* END INCLUDE FILE mtape_option_names.incl.pl1. */