Previous Topic Next topic Print topic


core_filename

Specifies the name of the file that is generated when the core_on_error tunable is set to 3.
Restriction: These tunables are supported for native COBOL only.

Syntax:

>>-----set core_filename=---"filename"-----------><

Parameters:

filename The name of the file that will be produced when a core file is generated if you set the core_on_error tunable to the value 3. If filename contains a tunable string it is substituted as folows:
%%
Single %
%d
The date of when the program encountered the error, in the format yyyymmdd
%f
The basename of the program that encountered the error
%p
The process ID of the program that has encountered the error
%t
The time of when the program encountered the error, in the format hhmmss

Properties:

Default: cblcore in the current working directory.
Setting: None

Example:

The command

set core_filename="core.%p@%t_%d"

will produce a filename such as core.12345@165920_20080115.

Previous Topic Next topic Print topic