feat(fs): add eventfd syscall support (#858)

* feat(fs): add eventfd syscall support
This commit is contained in:
linfeng
2024-07-25 15:08:17 +08:00
committed by GitHub
parent bd70d2d1f4
commit 86ee1395de
7 changed files with 336 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{
"name": "test_eventfd",
"version": "0.1.0",
"description": "test_eventfd",
"task_type": {
"BuildFromSource": {
"Local": {
"path": "apps/test_eventfd"
}
}
},
"depends": [],
"build": {
"build_command": "make install"
},
"install": {
"in_dragonos_path": "/bin"
},
"clean": {
"clean_command": "make clean"
},
"target_arch": ["x86_64"]
}