flags
|
Control flags
- 0x1
- By default, only the thread that called the routine is dumped. By setting this flag, all threads in the process are dumped.
|
process-id
|
The process ID. If this is set to 0, the calling process is dumped.
|
stackdump-name
|
The name of the output stackdump file as a null-terminated string. If set to null, the value is taken from the stackdump_filename
tunable. If the tunable is also not set, the platform default is used, which is
<program-basename>.stackdump.<process-id>.log.
stackdump-name can contain the same string substitution characters as the stackdump_filename tunable.
-
%%
- 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
For example: To create a stackdump file that contains the program name and pid, enter
%f.%p.dump
|