实现系统调用Fstat (#295)

* fstat

* 修改syscall.rs中的verify_area
This commit is contained in:
houmkh
2023-08-05 18:52:46 +08:00
committed by GitHub
parent 9550910ae1
commit be63f3b2b6
9 changed files with 601 additions and 76 deletions

View File

@ -0,0 +1,33 @@
{
"name": "test_fstat",
"version": "0.1.0",
"description": "一个用来测试fstat能够正常运行的app",
"task_type": {
"BuildFromSource": {
"Local": {
"path": "apps/test_fstat"
}
}
},
"depends": [
{
"name": "relibc",
"version": "0.1.0"
}
],
"build": {
"build_command": "make"
},
"install": {
"in_dragonos_path": "/bin"
},
"clean": {
"clean_command": "make clean"
},
"envs": [
{
"key": "__dragonos__",
"value": "__dragonos__"
}
]
}