Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JCL changes for zwegener #683

Open
wants to merge 18 commits into
base: v3.x/staging
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the ZSS package will be documented in this file.

## `2.18.1`
- Bugfix: Support cross-memory server parameters longer than 128 characters (#684)
- Enhancement: Expose new cross-memory server's functions in dynlink (#684)

## `2.18.0`
- Change log level for setting default value of 'httpRequestHeapMaxBlocks' to DEBUG instead of INFO.(#719)

Expand Down
2 changes: 2 additions & 0 deletions c/zis/stubinit.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,6 +229,8 @@
stubVector[ZIS_STUB_CMGETLOG] = (void*)cmsGetPCLogLevel;
stubVector[ZIS_STUB_CMGETSTS] = (void*)cmsGetStatus;
stubVector[ZIS_STUB_CMMKSNAM] = (void*)cmsMakeServerName;
stubVector[ZIS_STUB_CMGETPRX] = (void*)cmsGetConfigParmExt;
stubVector[ZIS_STUB_CMGETPUX] = (void*)cmsGetConfigParmExtUnchecked;
stubVector[ZIS_STUB_DYNASTXU] = (void*)createSimpleTextUnit;
stubVector[ZIS_STUB_DYNASTX2] = (void*)createSimpleTextUnit2;
stubVector[ZIS_STUB_DYNACTXU] = (void*)createCharTextUnit;
Expand Down
4 changes: 3 additions & 1 deletion h/zis/zisstubs.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
FULL BACKWARD COMPATIBILITY MUST BE MAINTAINED
*/

#define ZIS_STUBS_VERSION 3
#define ZIS_STUBS_VERSION 4

/*
How does a user check for compatibility?
Expand Down Expand Up @@ -310,6 +310,8 @@
/* #define ZIS_STUB_CMECSAFR 382 cmsFreeECSAStorage - not in CMS_CLIENT */
/* #define ZIS_STUB_CMECSAA2 383 cmsAllocateECSAStorage2 - not in CMS_CLIENT */
/* #define ZIS_STUB_CMECSAF2 384 cmsFreeECSAStorage2 - not in CMS_CLIENT */
#define ZIS_STUB_CMGETPRX 385 /* cmsGetConfigParmExt */
#define ZIS_STUB_CMGETPUX 386 /* cmsGetConfigParmExtUnchecked */

/* dynalloc, 400-429 */
#define ZIS_STUB_DYNASTXU 400 /* createSimpleTextUnit mapped */
Expand Down
Binary file removed plugins/zis/intro to zis plugins.mp4
Binary file not shown.
7 changes: 5 additions & 2 deletions samplib/zis/ZWESAUX → samplib/zis/ZWESASTC
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,8 @@
//* */
//********************************************************************/
//ZWESAUX EXEC PGM=ZWESAUX,REGION=&RGN
//STEPLIB DD DSNAME=zis-loadlib,DISP=SHR
//SYSPRINT DD SYSOUT=*
//STEPLIB DD DSNAME={zowe.setup.dataset.authLoadlib},
// DISP=SHR
// DD DSNAME={zowe.setup.dataset.authPluginLib},
// DISP=SHR
//SYSPRINT DD SYSOUT=*
10 changes: 7 additions & 3 deletions samplib/zis/ZWESIS01 → samplib/zis/ZWESISTC
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@
//********************************************************************/
//ZWESIS01 EXEC PGM=ZWESIS01,REGION=&RGN,
// PARM='NAME=&NAME,MEM=&MEM'
//STEPLIB DD DSNAME=ZWES.SISLOAD,DISP=SHR
//PARMLIB DD DSNAME=ZWES.SISSAMP,DISP=SHR
//SYSPRINT DD SYSOUT=*
//STEPLIB DD DSNAME={zowe.setup.dataset.authLoadlib},
// DISP=SHR
// DD DSNAME={zowe.setup.dataset.authPluginLib},
// DISP=SHR
//PARMLIB DD DSNAME={zowe.setup.dataset.parmlib},
// DISP=SHR
//SYSPRINT DD SYSOUT=*
Loading