syscall_lseek.c 611 字节
Newer Older
B
Bernard Xiong 已提交
1
/*
2
 * Copyright (c) 2006-2018, RT-Thread Development Team
B
Bernard Xiong 已提交
3
 *
4
 * SPDX-License-Identifier: Apache-2.0
B
Bernard Xiong 已提交
5 6 7 8 9 10 11
 *
 * Change Logs:
 * Date           Author       Notes
 * 2015-01-28     Bernard      first version
 */
#include <rtthread.h>
#ifdef RT_USING_DFS
12
#include <dfs_posix.h>
B
Bernard Xiong 已提交
13 14 15 16 17 18 19 20 21 22 23
#endif
#include <yfuns.h>

#pragma module_name = "?__lseek"
long __lseek(int handle, long offset, int whence)
{
    if (handle == _LLIO_STDOUT ||
        handle == _LLIO_STDERR ||
        handle == _LLIO_STDIN)
        return _LLIO_ERROR;

24
#ifdef RT_USING_DFS
B
bernard 已提交
25
    return lseek(handle, offset, whence);
26 27 28
#else
    return _LLIO_ERROR;
#endif
B
Bernard Xiong 已提交
29
}