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

Signed-off-by: Irek Fakhrutdinov <ifakhrutdinov@rocketsoftware.com>
ifakhrutdinov committed Jan 28, 2025
1 parent 59c036a commit b24eaf1
Showing 4 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,9 @@

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

## `3.2.0`
- Enhancement: expose new cmutils functions (#740)

## `3.1.0`
- Enhancement: module registry (#732)

4 changes: 4 additions & 0 deletions c/zis/stubinit.c
Original file line number Diff line number Diff line change
@@ -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;
6 changes: 5 additions & 1 deletion h/zis/zisstubs.h
Original file line number Diff line number Diff line change
@@ -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?
@@ -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 */

0 comments on commit b24eaf1

Please sign in to comment.