rt-thread-official/components/libc/compilers/dlib/syscall_remove.c

35 lines
745 B
C
Raw Normal View History

2015-01-31 11:13:50 +08:00
/*
2021-03-08 18:19:04 +08:00
* Copyright (c) 2006-2021, RT-Thread Development Team
2015-01-31 11:13:50 +08:00
*
2018-10-14 19:28:18 +08:00
* SPDX-License-Identifier: Apache-2.0
2015-01-31 11:13:50 +08:00
*
* Change Logs:
* Date Author Notes
* 2015-01-28 Bernard first version
*/
2015-01-31 11:13:50 +08:00
#include <rtthread.h>
2021-11-13 05:47:32 +08:00
#include <LowLevelIOInterface.h>
2021-10-26 12:51:32 +08:00
#include <unistd.h>
2021-12-26 22:41:24 +08:00
#include <compiler_private.h>
#define DBG_TAG "dlib.syscall.remove"
#define DBG_LVL DBG_INFO
#include <rtdbg.h>
2015-01-31 11:13:50 +08:00
2021-11-13 23:16:31 +08:00
/*
* The "remove" function should remove the file named "filename". It
* should return 0 on success and nonzero on failure.
*/
2015-01-31 11:13:50 +08:00
#pragma module_name = "?remove"
2021-11-13 23:16:31 +08:00
int remove(const char *filename)
2015-01-31 11:13:50 +08:00
{
2021-11-16 00:22:49 +08:00
#ifdef DFS_USING_POSIX
2021-11-13 23:16:31 +08:00
return unlink(filename);
2021-10-26 12:51:32 +08:00
#else
2021-12-29 20:48:36 +08:00
LOG_W(_WARNING_WITHOUT_FS);
2021-11-13 23:16:31 +08:00
return _LLIO_ERROR;
2021-11-16 00:22:49 +08:00
#endif /* DFS_USING_POSIX */
2015-01-31 11:13:50 +08:00
}