mirror of
https://github.com/mmueller41/mxtasking.git
synced 2026-01-21 12:42:57 +01:00
Missed parameter for free().
This commit is contained in:
@@ -48,6 +48,6 @@ public:
|
||||
* Frees the given memory using systems free.
|
||||
* @param address Memory to free.
|
||||
*/
|
||||
void free(const std::uint16_t /*core_id*/, void *address) noexcept override { GlobalHeap::heap().free(address); }
|
||||
void free(const std::uint16_t /*core_id*/, void *address) noexcept override { GlobalHeap::heap().free(address, S); }
|
||||
};
|
||||
} // namespace mx::memory
|
||||
Reference in New Issue
Block a user