Skip to content

Commit

Permalink
Update dynlink to expose new cmutils functions; pick up EXECUTABLE=YE…
Browse files Browse the repository at this point in the history
…S storage changes
  • Loading branch information
ifakhrutdinov committed Jan 10, 2025
1 parent 59c036a commit 7eb3fed
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
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
4 changes: 4 additions & 0 deletions c/zis/stubinit.c
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,10 @@
stubVector[ZIS_STUB_CMUMAPGH] = (void*)crossMemoryMapGetHandle;
stubVector[ZIS_STUB_CMUMAPGT] = (void*)crossMemoryMapGet;
stubVector[ZIS_STUB_CMUMAPIT] = (void*)crossMemoryMapIterate;
stubVector[ZIS_STUB_CMALLCX ] = (void*)cmAllocExec;
stubVector[ZIS_STUB_CMFREEX ] = (void*)cmFreeExec;
stubVector[ZIS_STUB_CMALLC2X] = (void*)cmAlloc2Exec;
stubVector[ZIS_STUB_CMFREE2X] = (void*)cmFree2Exec;
stubVector[ZIS_STUB_FBMGRCRT] = (void*)fbMgrCreate;
stubVector[ZIS_STUB_FBMGRALC] = (void*)fbMgrAlloc;
stubVector[ZIS_STUB_FBMGRFRE] = (void*)fbMgrFree;
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

0 comments on commit 7eb3fed

Please sign in to comment.