Chapter 6. Java Native Interface (JNI) 97
6.3 More advanced JNI usage
In the following sections we demonstrate more advanced usage with JNI.
6.3.1 Calling system services from a Java application
The z/OS operating system provides a large set of low-level system services.
These services are typically made available as either assembler macros or C
library functions. You can refer to the following documentation for more detailed
information about these services:
MVS Programming: Assembler Services Guide, SA22-7605-06
UNIX System Services Programming: Assembler Callable Services
Reference, SA22-7803-08
z/OS V1R7.0 MVS Programming: Authorized Assembler Services Guide,
SA22-7608-09
These services typically require special authorization and are de ...