feat(time): Add syscall support for utime* (#838)

* feat(vfs): Add syscall support for utime*

impl sys_utimensat
impl sys_utimes
add utimensat test
fix some warning

* fix(vfs): Verify pointer validity

* fix: remove bad cfg
This commit is contained in:
linfeng
2024-06-27 17:43:25 +08:00
committed by GitHub
parent 03746da3d9
commit 6f189d2743
10 changed files with 232 additions and 10 deletions

View File

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