开发平台(Platform): (Ex: Win10, Linux, ...)
Linux
编译器(Ex: GCC, clang, VC++...)+目标环境(跟开发平台不同的话需列出)
gcc x64 4.8.3 或4.8.5
额外使用到的函数库(Library Used): (Ex: OpenGL, ...)
问题(Question):
使用void** 与void*结果不一致
不晓得是compiler bug或是shared memory的address是否有地雷
喂入的资料(Input):
可以使用
python -c 'print("\x55\xAA\x55\xAA")' > struct.bin
产生测资 档名一定要struct.bin
预期的正确结果(Expected Output):
执行以下两行程式片段应该一样结果
以下是call两个不同函数
load_table_from_shm_voidpp((void**)&g_test_struct);
load_table_from_shm_voidp((void*)g_test_struct);
错误结果(Wrong Output):
load_table_from_shm_voidp((void*)g_test_struct);
执行到read会取得errno=14 bad address
用gdb看bt, 传入的void*会是(void*)0
程式码(Code):(请善用置底文网页, 记得排版)
gist
https://gist.github.com/swt02026/d6bafca53b375e62d807c33f33a0b694
补充说明(Supplement):
因为是公司的程式码
所以我修改成最小能重现相同状况的程式码
编译参数要加上 -std=gnu11