Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Musl
提交
293eb68c
T
Third Party Musl
项目概览
OpenHarmony
/
Third Party Musl
1 年多 前同步成功
通知
37
Star
125
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Musl
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
293eb68c
编写于
12月 19, 2022
作者:
O
openharmony_ci
提交者:
Gitee
12月 19, 2022
浏览文件
操作
浏览文件
下载
差异文件
!749 【回合monthly_1018】refactor:vfs优化
Merge pull request !749 from Zhaotianyu/20221216vfs_opt
上级
9ea2d0a5
4419d8e0
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
0 addition
and
344 deletion
+0
-344
porting/liteos_m_iccarm/kernel/iccarm.gni
porting/liteos_m_iccarm/kernel/iccarm.gni
+0
-1
porting/liteos_m_iccarm/kernel/src/fs.c
porting/liteos_m_iccarm/kernel/src/fs.c
+0
-343
未找到文件。
porting/liteos_m_iccarm/kernel/iccarm.gni
浏览文件 @
293eb68c
...
...
@@ -31,7 +31,6 @@ MUSLPORTINGDIR = get_path_info(".", "abspath")
ICCARM_ADAPT_INCLUDE_DIRS = [ "$MUSLPORTINGDIR/include" ]
ICCARM_ADAPT_SRC_COMMON = [
"$MUSLPORTINGDIR/src/fs.c",
"$MUSLPORTINGDIR/src/misc/realpath.c",
"$MUSLPORTINGDIR/src/network/htonl.c",
"$MUSLPORTINGDIR/src/network/htons.c",
...
...
porting/liteos_m_iccarm/kernel/src/fs.c
已删除
100644 → 0
浏览文件 @
9ea2d0a5
/*
* Copyright (c) 2022-2022 Huawei Device Co., Ltd. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without modification,
* are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice, this list of
* conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice, this list
* of conditions and the following disclaimer in the documentation and/or other materials
* provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors may be used
* to endorse or promote products derived from this software without specific prior written
* permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#define _GNU_SOURCE
#include "los_config.h"
#include <errno.h>
#include <stdarg.h>
#include <dirent.h>
#include <sys/mount.h>
#include <sys/statfs.h>
#include <sys/stat.h>
#include <unistd.h>
#ifdef LOSCFG_LIBC_ICCARM_FS
#include "los_fs.h"
int
mount
(
const
char
*
source
,
const
char
*
target
,
const
char
*
filesystemtype
,
unsigned
long
mountflags
,
const
void
*
data
)
{
return
LOS_FsMount
(
source
,
target
,
filesystemtype
,
mountflags
,
data
);
}
int
umount
(
const
char
*
target
)
{
return
LOS_FsUmount
(
target
);
}
int
umount2
(
const
char
*
target
,
int
flag
)
{
return
LOS_FsUmount2
(
target
,
flag
);
}
int
open
(
const
char
*
path
,
int
oflag
,
...)
{
va_list
vaList
;
va_start
(
vaList
,
oflag
);
int
ret
;
ret
=
LOS_Open
(
path
,
oflag
,
vaList
);
va_end
(
vaList
);
return
ret
;
}
int
close
(
int
fd
)
{
return
LOS_Close
(
fd
);
}
ssize_t
read
(
int
fd
,
void
*
buf
,
size_t
nbyte
)
{
return
LOS_Read
(
fd
,
buf
,
nbyte
);
}
ssize_t
write
(
int
fd
,
const
void
*
buf
,
size_t
nbyte
)
{
return
LOS_Write
(
fd
,
buf
,
nbyte
);
}
off_t
lseek
(
int
fd
,
off_t
offset
,
int
whence
)
{
return
LOS_Lseek
(
fd
,
offset
,
whence
);
}
int
unlink
(
const
char
*
path
)
{
return
LOS_Unlink
(
path
);
}
int
fstat
(
int
fd
,
struct
stat
*
buf
)
{
return
LOS_Fstat
(
fd
,
buf
);
}
int
stat
(
const
char
*
path
,
struct
stat
*
buf
)
{
return
LOS_Stat
(
path
,
buf
);
}
int
fsync
(
int
fd
)
{
return
LOS_Fsync
(
fd
);
}
int
mkdir
(
const
char
*
path
,
mode_t
mode
)
{
return
LOS_Mkdir
(
path
,
mode
);
}
DIR
*
opendir
(
const
char
*
dirName
)
{
return
LOS_Opendir
(
dirName
);
}
struct
dirent
*
readdir
(
DIR
*
dir
)
{
return
LOS_Readdir
(
dir
);
}
int
closedir
(
DIR
*
dir
)
{
return
LOS_Closedir
(
dir
);
}
int
rmdir
(
const
char
*
path
)
{
return
LOS_Unlink
(
path
);
}
int
rename
(
const
char
*
oldName
,
const
char
*
newName
)
{
return
LOS_Rename
(
oldName
,
newName
);
}
int
statfs
(
const
char
*
path
,
struct
statfs
*
buf
)
{
return
LOS_Statfs
(
path
,
buf
);
}
int
ftruncate
(
int
fd
,
off_t
length
)
{
return
LOS_Ftruncate
(
fd
,
length
);
}
ssize_t
pread
(
int
fd
,
void
*
buf
,
size_t
nbyte
,
off_t
offset
)
{
return
LOS_Pread
(
fd
,
buf
,
nbyte
,
offset
);
}
ssize_t
pwrite
(
int
fd
,
const
void
*
buf
,
size_t
nbyte
,
off_t
offset
)
{
return
LOS_Pwrite
(
fd
,
buf
,
nbyte
,
offset
);
}
int
access
(
const
char
*
path
,
int
mode
)
{
struct
stat
st
;
if
(
stat
(
path
,
&
st
)
<
0
)
{
return
-
1
;
}
if
((
st
.
st_mode
&
S_IFDIR
)
||
(
st
.
st_mode
&
S_IFREG
))
{
return
0
;
}
if
((
mode
&
W_OK
)
&&
!
(
st
.
st_mode
&
S_IWRITE
))
{
return
-
1
;
}
return
0
;
}
int
remove
(
const
char
*
filename
)
{
int
ret
=
unlink
(
filename
);
if
(
ret
==
-
EISDIR
)
{
ret
=
rmdir
(
filename
);
}
return
ret
;
}
int
fcntl
(
int
fd
,
int
cmd
,
...)
{
int
ret
;
va_list
vaList
;
va_start
(
vaList
,
cmd
);
ret
=
OsFcntl
(
fd
,
cmd
,
vaList
);
va_end
(
vaList
);
return
ret
;
}
int
ioctl
(
int
fd
,
int
req
,
...)
{
int
ret
;
va_list
vaList
;
va_start
(
vaList
,
req
);
ret
=
OsIoctl
(
fd
,
req
,
vaList
);
va_end
(
vaList
);
return
ret
;
}
#else
/* #ifdef LOSCFG_FS_VFS */
int
mount
(
const
char
*
source
,
const
char
*
target
,
const
char
*
filesystemtype
,
unsigned
long
mountflags
,
const
void
*
data
)
{
return
-
1
;
}
int
umount
(
const
char
*
target
)
{
return
-
1
;
}
int
umount2
(
const
char
*
target
,
int
flag
)
{
return
-
1
;
}
int
open
(
const
char
*
path
,
int
oflag
,
...)
{
return
-
1
;
}
int
close
(
int
fd
)
{
return
-
1
;
}
ssize_t
read
(
int
fd
,
void
*
buf
,
size_t
nbyte
)
{
return
-
1
;
}
ssize_t
write
(
int
fd
,
const
void
*
buf
,
size_t
nbyte
)
{
return
-
1
;
}
off_t
lseek
(
int
fd
,
off_t
offset
,
int
whence
)
{
return
-
1
;
}
int
unlink
(
const
char
*
path
)
{
return
-
1
;
}
int
fstat
(
int
fd
,
struct
stat
*
buf
)
{
return
-
1
;
}
int
stat
(
const
char
*
path
,
struct
stat
*
buf
)
{
return
-
1
;
}
int
fsync
(
int
fd
)
{
return
-
1
;
}
int
mkdir
(
const
char
*
path
,
mode_t
mode
)
{
return
-
1
;
}
DIR
*
opendir
(
const
char
*
dirName
)
{
return
NULL
;
}
struct
dirent
*
readdir
(
DIR
*
dir
)
{
return
NULL
;
}
int
closedir
(
DIR
*
dir
)
{
return
-
1
;
}
int
rmdir
(
const
char
*
path
)
{
return
-
1
;
}
int
rename
(
const
char
*
oldName
,
const
char
*
newName
)
{
return
-
1
;
}
int
statfs
(
const
char
*
path
,
struct
statfs
*
buf
)
{
return
-
1
;
}
int
ftruncate
(
int
fd
,
off_t
length
)
{
return
-
1
;
}
ssize_t
pread
(
int
fd
,
void
*
buf
,
size_t
nbyte
,
off_t
offset
)
{
return
-
1
;
}
ssize_t
pwrite
(
int
fd
,
const
void
*
buf
,
size_t
nbyte
,
off_t
offset
)
{
return
-
1
;
}
int
access
(
const
char
*
path
,
int
mode
)
{
return
-
1
;
}
int
remove
(
const
char
*
filename
)
{
return
-
1
;
}
int
fcntl
(
int
fd
,
int
cmd
,
...)
{
return
-
1
;
}
int
ioctl
(
int
fd
,
int
req
,
...)
{
return
-
1
;
}
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录