mirror of
https://github.com/DragonOS-Community/DragonOS.git
synced 2025-06-18 12:16:31 +00:00
命名管道系统调用以及文件系统兼容特殊文件类型的接口 (#397)
* 修复pipe2在读端或写端关闭后还阻塞问题。 * 实现命名管道机制,增加特殊文件类型兼容普通文件系统的接口。 * 普通文件系统能够适配特殊文件(命名管道等)
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
"BuildFromSource": {
|
||||
"Git": {
|
||||
"url": "https://git.mirrors.dragonos.org/DragonOS-Community/relibc.git",
|
||||
"revision": "26536e7fcd"
|
||||
"revision": "66739c1b10"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
33
user/dadk/config/test_mkfifo-0.1.0.dadk
Normal file
33
user/dadk/config/test_mkfifo-0.1.0.dadk
Normal file
@ -0,0 +1,33 @@
|
||||
{
|
||||
"name": "test_mkfifo",
|
||||
"version": "0.1.0",
|
||||
"description": "一个用来测试mkfifo能够正常运行的app",
|
||||
"task_type": {
|
||||
"BuildFromSource": {
|
||||
"Local": {
|
||||
"path": "apps/test_mkfifo"
|
||||
}
|
||||
}
|
||||
},
|
||||
"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__"
|
||||
}
|
||||
]
|
||||
}
|
Reference in New Issue
Block a user