问题描述
- 函数 aligned_alloc
-
编译一个KV文件系统时提示:
table.c:1094:3: warning: implicit declaration of function ‘aligned_alloc’ [-Wimplicit-function-declaration]
uint8_t * buf = aligned_alloc(BARREL_ALIGN, BARREL_ALIGN);
虽然编译的时候能通过,但是运行起来总是出错。
这是什么原因,怎么解决啊,希望知道的能给点提示,哪怕一点点。小弟不胜感激。
解决方案
alloc_page函数分析
C语言:malloc()函数与alloc()函数
解决方案二:
table.c文件要包含aligned_alloc声明/定义的头文件
时间: 2024-09-23 07:23:28