mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-08 18:26:48 +00:00
* 实现SystemV共享内存 * 测试shm * 添加测试程序 * 完善细节 * 修正shm的时间数据错误的问题 * fix: devfs的metadata权限为0x777的错误 --------- Co-authored-by: longjin <longjin@DragonOS.org>
23 lines
396 B
Plaintext
23 lines
396 B
Plaintext
{
|
|
"name": "test_shm",
|
|
"version": "0.1.0",
|
|
"description": "测试共享内存",
|
|
"task_type": {
|
|
"BuildFromSource": {
|
|
"Local": {
|
|
"path": "apps/test_shm"
|
|
}
|
|
}
|
|
},
|
|
"depends": [ ],
|
|
"build": {
|
|
"build_command": "make install -j $(nproc)"
|
|
},
|
|
"install": {
|
|
"in_dragonos_path": "/bin"
|
|
},
|
|
"clean": {
|
|
"clean_command": "make clean"
|
|
},
|
|
"envs": []
|
|
} |