diff options
| author | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-06 09:38:00 +0200 |
|---|---|---|
| committer | Amlal <amlal@el-mahrouss-logic.com> | 2024-09-06 09:38:00 +0200 |
| commit | 507b3a76de36e41bdfd1c14d94a397990b26a423 (patch) | |
| tree | e087051b51d36828fbca98d9e9e74cb1381a4def /dev/ZKA/Sources/IPEFDLLObject.cxx | |
| parent | 98f504c442b1a0f769e2f20e4fb251813dd5dd67 (diff) | |
[ IMP ] A first set of software patches regarding the OS kernel and it's components.
Signed-off-by: Amlal <amlal@el-mahrouss-logic.com>
Diffstat (limited to 'dev/ZKA/Sources/IPEFDLLObject.cxx')
| -rw-r--r-- | dev/ZKA/Sources/IPEFDLLObject.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dev/ZKA/Sources/IPEFDLLObject.cxx b/dev/ZKA/Sources/IPEFDLLObject.cxx index 913912a4..a8505eb3 100644 --- a/dev/ZKA/Sources/IPEFDLLObject.cxx +++ b/dev/ZKA/Sources/IPEFDLLObject.cxx @@ -18,11 +18,11 @@ Revision History: - 01/02/24: Rework shared sharedObj ABI, except a rtl_init_shared_object and - rtl_fini_shared_object (amlel) 15/02/24: Breaking changes, changed the name of the + 01/02/24: Rework shared sharedObj ABI, except a rtl_init_dll and + rtl_fini_dll (amlel) 15/02/24: Breaking changes, changed the name of the routines. (amlel) - 07/28/24: Replace rt_library_free with rtl_fini_shared_object + 07/28/24: Replace rt_library_free with rtl_fini_dll ------------------------------------------- */ @@ -37,7 +37,7 @@ using namespace Kernel; /** @brief Library initializer. */ /***********************************************************************************/ -EXTERN_C IDLL rtl_init_shared_object(UserProcess* header) +EXTERN_C IDLL rtl_init_dll(UserProcess* header) { IDLL sharedObj = tls_new_class<IPEFDLLObject>(); @@ -80,7 +80,7 @@ EXTERN_C IDLL rtl_init_shared_object(UserProcess* header) /** @param successful Reports if successful or not. */ /***********************************************************************************/ -EXTERN_C Void rtl_fini_shared_object(UserProcess* header, IDLL lib, Bool* successful) +EXTERN_C Void rtl_fini_dll(UserProcess* header, IDLL lib, Bool* successful) { MUST_PASS(successful); |
