修复tcc编译失败的bug

This commit is contained in:
zhangzheng
2023-12-08 23:55:00 +08:00
parent f3062af123
commit 9e7c1e08ee
12 changed files with 59 additions and 14 deletions

View File

@@ -18,7 +18,7 @@
#include "mm_man.h"
#include "ipc.h"
static mem_t global_mem; //!< 全局内存管理块
static uint8_t mem_block[9*1024 * 1024]; //!< 内核内存分配堆 TODO:自动识别大小或者从bootstrap中读取
static uint8_t mem_block[31*1024 * 1024]; //!< 内核内存分配堆 TODO:自动识别大小或者从bootstrap中读取
static kobject_t *kobj_ls[FACTORY_FUNC_MAX]; //!< 全局静态内核对象
/**
* @brief 注册一个全局静态的内核对象

View File

@@ -1,6 +1,6 @@
/**
* @file syscall.c
* @author ATShining (1358745329@qq.com)
* @author zhangzheng (1358745329@qq.com)
* @brief
* @version 0.1
* @date 2023-11-19