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
|
|
|
|
*/
|
|
|
|
#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>
|
2015-01-31 11:13:50 +08:00
|
|
|
|
2021-11-13 23:16:31 +08:00
|
|
|
/*
|
|
|
|
* The "__close" function should close the file corresponding to
|
|
|
|
* "handle". It should return 0 on success and nonzero on failure.
|
|
|
|
*/
|
|
|
|
|
2015-01-31 11:13:50 +08:00
|
|
|
#pragma module_name = "?__close"
|
2021-11-13 23:16:31 +08:00
|
|
|
|
2015-01-31 11:13:50 +08:00
|
|
|
int __close(int handle)
|
|
|
|
{
|
|
|
|
if (handle == _LLIO_STDOUT ||
|
|
|
|
handle == _LLIO_STDERR ||
|
|
|
|
handle == _LLIO_STDIN)
|
|
|
|
return _LLIO_ERROR;
|
2021-11-16 00:22:49 +08:00
|
|
|
#ifdef DFS_USING_POSIX
|
2017-10-15 22:41:59 +08:00
|
|
|
return close(handle);
|
2015-01-31 11:13:50 +08:00
|
|
|
#else
|
2021-10-26 12:51:32 +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
|
|
|
}
|