1 02/05/85  pascal_create_area
 2 
 3 Syntax as a command:  pascal_create_area names {-control_args}
 4 
 5 
 6 Function: creates temporary, private areas in the process directory
 7 for the specified Pascal object segments.
 8 
 9 
10 Arguments:
11 names
12    are relative pathnames of Pascal object segments that are to have
13    their own private areas.  An error occurs for each object segment
14    for which a private area has already been created.
15 
16 
17 Control arguments:
18 -brief, -bf
19    suppresses the error message that is printed when the private area
20    for a specified program already exists.
21 -long, -lg
22    allows the error message that is printed when the private area for a
23    specified program already exists.  (Default)
24 -size N
25    sets the maximum size of each area to N pages.  (Default: 225
26    records)
27 
28 
29 Notes: All Pascal "new" operations executed by the object segments use
30 the associated private areas.
31 
32 By default, the new operation uses the default Pascal area in the
33 process directory.  You can examine this area, and any that are
34 created, using pascal_area_status.
35 
36 For information on Pascal see the Multics Pascal User's Guide (GB62).