SVCFIND
The SVCFIND (SVC) service scans the SVC table, locating and displaying information about SVCs.
It also
- dumps the first 64 bytes of the SVC module from main storage
- helps you plan the installation of new SVCs
For information about loading SVCs into main storage, see LOADLPA.
Syntax
The parameters are defined as follows:
Parameter | Description |
|---|---|
type# | is a one-digit SVC type number (1, 2, 3, 4, or 6) SVCFIND displays unused SVC table entries that equal the type number. |
starting# | is a one- to three-digit SVC number The display begins with this number. The default is 200. |
ending# | is a one- to three-digit SVC number The display ends with this number. The default is 255. |
LIST | displays all SVC numbers in the specified starting number and ending number range |
DUMP | displays the first 64 bytes of the specified svc# from main storage |
svc# | is a one- to three-digit SVC number This number cannot exceed 255. The default is 0. |
Examples
To display SVC table entries for unused type 2 SVC members between 240 and 245, type
SVCFIND 2 240 245
[1] [1] [1] [1] [2] [3] [4]
AMTY13I SVC# TYPE EPA APF NP ESR ASF LOCKS TABLE-ADR FLAGS
AMTY14I 240 2 -UNUSED- N N N Y NONE 00FDB4A0 81000000
AMTY14I 243 2 -UNUSED- N N N Y NONE 00FDB4B0 81000000
To display all SVC types, used and unused, between 199 and 201, type
SVCFIND LIST 199 201
[1] [1] [1] [1] [2] [3] [4]
AMTY13I SVC# TYPE EPA APF NP ESR ASF LOCKS TABLE-ADR FLAGS
AMTY14I 199 2 -UNUSED- N N N Y NONE 00FDB358 81000000
AMTY14I 200 2 -UNUSED- N N N Y NONE 00FDB360 81000000
AMTY14I 201 2 00E1AC10 Y N N N NONE 00FDB368 C8000000
To dump the first 64 bytes of storage for SVC 235, type
SVCFIND DUMP 235
[5] [6]
AMTY16I 813BA1C0 47F0601A 14C9C7C3 F0F0F340 F0F3F1F9 *.0-..IGC003.0319*
AMTY16I 013BA1D0 F540C8C2 C2F7F7F0 F9004120 6FFF189F *5.HBB7709...?...*
AMTY16I 013BA1E0 18C11830 41F00000 58002889 5810706C *.A...0.....i...%*
AMTY16I 013BA1F0 58101070 5810101C 1881181C 180350D0 *.........a....&.*
Legend:
bit settings in the SVCTABLE entry
Refer to the IBM Publication, z/OS MVS Data Areas Vol 5, for a description of the SVCTABLE data area.
- highest lock required by the SVC first-level interrupt handler; the lock is obtained from the SVCLOCKS field of the SVCTABLE
- address of the SVCTABLE entry for the appropriate SVC
- hexadecimal display of the SVCATTR and SVCLOCKS fields from the SVCTABLE entry
- starting address of the storage being dumped, and the hexadecimal and EBCDIC representation of that data
- text representation of the dump
Related topic