增加共享内存对象的支持

This commit is contained in:
zhangzheng
2024-01-01 16:57:55 +08:00
parent 8b63641978
commit 0bc4a32d6f
22 changed files with 497 additions and 76 deletions

View File

@@ -11,10 +11,10 @@
typedef struct mem_heap
{
uint32_t magic;
union
{
char name[MEM_HEAP_NAME];
};
// union
// {
// char name[MEM_HEAP_NAME];
// };
struct mem_heap *next;
struct mem_heap *prev;
umword_t size;