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

Update the dynamic linkage code to expose new cmutils functions #740

Open
wants to merge 1 commit into
base: v3.x/staging
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ All notable changes to the ZSS package will be documented in this file.

## `3.1.0`
- Enhancement: module registry (#732)
- Enhancement: expose new cmutils functions (#740)

## `3.0.0`
- Enhancement: if no `zowe.logDirectory` is defined in config, logging is disabled. (#726)
Expand Down
6 changes: 5 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 5
#define ZIS_STUBS_VERSION 6

/*
How does a user check for compatibility?
Expand Down Expand Up @@ -232,6 +232,10 @@
#define ZIS_STUB_CMUMAPGH 278 /* crossMemoryMapGetHandle */
#define ZIS_STUB_CMUMAPGT 279 /* crossMemoryMapGet */
#define ZIS_STUB_CMUMAPIT 280 /* crossMemoryMapIterate */
#define ZIS_STUB_CMALLCX 281 /* cmAllocExec */
#define ZIS_STUB_CMFREEX 282 /* cmFreeExec */
#define ZIS_STUB_CMALLC2X 283 /* cmAlloc2Exec */
#define ZIS_STUB_CMFREE2X 284 /* cmFree2Exec */

/* collections, 290-349 */
#define ZIS_STUB_FBMGRCRT 290 /* fbMgrCreate */
Expand Down
Loading