summaryrefslogtreecommitdiffhomepage
path: root/Public/Developer/SystemLib/Sources/Heap.c
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-17 09:54:17 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-04-17 10:08:50 +0200
commitc0099ab36bf9606c5503ceb0fa0d5b64f71c7203 (patch)
tree1c310521280e3c995981a903895c7c2e124582ee /Public/Developer/SystemLib/Sources/Heap.c
parentf93fb4439aaa865d998a790348313a4c7163bb8b (diff)
Unrelated: These changes are important but related to nothing.
- Window now becomes Wm, as in Window manager. - Fix entrypoint for FragLib. - Remove CoreEvents to be replaced with Event Server, reworked Display Server. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Public/Developer/SystemLib/Sources/Heap.c')
-rw-r--r--Public/Developer/SystemLib/Sources/Heap.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/Public/Developer/SystemLib/Sources/Heap.c b/Public/Developer/SystemLib/Sources/Heap.c
index 041c5764..3db7a374 100644
--- a/Public/Developer/SystemLib/Sources/Heap.c
+++ b/Public/Developer/SystemLib/Sources/Heap.c
@@ -12,6 +12,7 @@
/// @param flags flags.
/// @return
CA_EXTERN_C PtrVoidType RtTlsAllocate(QWordType sz, DWordType flags) {
+ CA_MUST_PASS(kSharedApplication);
CA_MUST_PASS(sz);
CA_MUST_PASS(flags);
@@ -22,7 +23,9 @@ CA_EXTERN_C PtrVoidType RtTlsAllocate(QWordType sz, DWordType flags) {
/// @brief Free pointer from the user's heap.
/// @param ptr the pointer to free.
CA_EXTERN_C VoidType RtTlsFree(PtrVoidType ptr) {
+ CA_MUST_PASS(kSharedApplication);
CA_MUST_PASS(ptr);
+
CA_UNREFERENCED_PARAMETER(
kSharedApplication->Invoke(kSharedApplication, kCallFreePtr, ptr));
}
@@ -31,6 +34,8 @@ CA_EXTERN_C VoidType RtTlsFree(PtrVoidType ptr) {
/// @param ptr the pointer to find.
/// @return the size.
CA_EXTERN_C QWordType RtTlsGetSize(PtrVoidType ptr) {
+ CA_MUST_PASS(kSharedApplication);
+
CA_MUST_PASS(ptr);
return kSharedApplication->Invoke(kSharedApplication, kCallSizePtr, ptr);
}
@@ -39,6 +44,8 @@ CA_EXTERN_C QWordType RtTlsGetSize(PtrVoidType ptr) {
/// @param ptr the pointer to check.
/// @return if it exists
CA_EXTERN_C BooleanType RtTlsPtrExists(PtrVoidType ptr) {
+ CA_MUST_PASS(kSharedApplication);
+
CA_MUST_PASS(ptr);
return kSharedApplication->Invoke(kSharedApplication, kCallCheckPtr, ptr);
}