| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455 | /* * Copyright (c) 2006-2018, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date           Author       Notes */#include <reent.h>#include <sys/errno.h>#include <sys/time.h>#include <stdio.h>#include <rtthread.h>#ifdef RT_USING_DFS#include <dfs_posix.h>#endif#ifdef RT_USING_MODULE#include <dlmodule.h>#endif/* Reentrant versions of system calls.  */#ifndef _REENT_ONLYint *__errno (){  return _rt_errno();}#endifint_close_r(struct _reent *ptr, int fd){#ifndef RT_USING_DFS    return 0;#else    return close(fd);#endif}int_execve_r(struct _reent *ptr, const char * name, char *const *argv, char *const *env){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_fcntl_r(struct _reent *ptr, int fd, int cmd, int arg){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_fork_r(struct _reent *ptr){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_fstat_r(struct _reent *ptr, int fd, struct stat *pstat){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_getpid_r(struct _reent *ptr){    return 0;}int_isatty_r(struct _reent *ptr, int fd){    if (fd >=0 && fd < 3) return 1;    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_kill_r(struct _reent *ptr, int pid, int sig){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_link_r(struct _reent *ptr, const char *old, const char *new){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}_off_t_lseek_r(struct _reent *ptr, int fd, _off_t pos, int whence){#ifndef RT_USING_DFS    return 0;#else    _off_t rc;    rc = lseek(fd, pos, whence);    return rc;#endif}int_mkdir_r(struct _reent *ptr, const char *name, int mode){#ifndef RT_USING_DFS    return 0;#else    int rc;    rc = mkdir(name, mode);    return rc;#endif}int_open_r(struct _reent *ptr, const char *file, int flags, int mode){#ifndef RT_USING_DFS    return 0;#else    int rc;    rc = open(file, flags, mode);    return rc;#endif}_ssize_t_read_r(struct _reent *ptr, int fd, void *buf, size_t nbytes){#ifndef RT_USING_DFS    return 0;#else    _ssize_t rc;    rc = read(fd, buf, nbytes);    return rc;#endif}int_rename_r(struct _reent *ptr, const char *old, const char *new){#ifndef RT_USING_DFS    return 0;#else    int rc;    rc = rename(old, new);    return rc;#endif}void *_sbrk_r(struct _reent *ptr, ptrdiff_t incr){    /* no use this routine to get memory */    return RT_NULL;}int_stat_r(struct _reent *ptr, const char *file, struct stat *pstat){#ifndef RT_USING_DFS    return 0;#else    int rc;    rc = stat(file, pstat);    return rc;#endif}_CLOCK_T__times_r(struct _reent *ptr, struct tms *ptms){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}int_unlink_r(struct _reent *ptr, const char *file){#ifndef RT_USING_DFS    return 0;#else    int rc;    rc = unlink(file);    return rc;#endif}int_wait_r(struct _reent *ptr, int *status){    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}#ifdef RT_USING_DEVICE_ssize_t_write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes){#ifndef RT_USING_DFS    if (fileno(stdout) == fd)    {        rt_device_t console;        console = rt_console_get_device();        if (console) return rt_device_write(console, -1, buf, nbytes);    }    return 0;#else    _ssize_t rc;    rc = write(fd, buf, nbytes);    return rc;#endif}#endif#ifdef RT_USING_PTHREADS#include <clock_time.h>/* POSIX timer provides clock_gettime function */#include <time.h>int_gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp){    struct timespec tp;    if (clock_gettime(CLOCK_REALTIME, &tp) == 0)    {        if (__tp != RT_NULL)        {            __tp->tv_sec  = tp.tv_sec;            __tp->tv_usec = tp.tv_nsec / 1000UL;        }        return tp.tv_sec;    }    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}#else#define MILLISECOND_PER_SECOND  1000UL#define MICROSECOND_PER_SECOND  1000000UL#define NANOSECOND_PER_SECOND   1000000000UL#define MILLISECOND_PER_TICK    (MILLISECOND_PER_SECOND / RT_TICK_PER_SECOND)#define MICROSECOND_PER_TICK    (MICROSECOND_PER_SECOND / RT_TICK_PER_SECOND)#define NANOSECOND_PER_TICK     (NANOSECOND_PER_SECOND  / RT_TICK_PER_SECOND)struct timeval _timevalue = {0};#ifdef RT_USING_DEVICEstatic void libc_system_time_init(void){    time_t time;    rt_tick_t tick;    rt_device_t device;    time = 0;    device = rt_device_find("rtc");    if (device != RT_NULL)    {        /* get realtime seconds */        rt_device_control(device, RT_DEVICE_CTRL_RTC_GET_TIME, &time);    }    /* get tick */    tick = rt_tick_get();    _timevalue.tv_usec = MICROSECOND_PER_SECOND - (tick%RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK;    _timevalue.tv_sec = time - tick/RT_TICK_PER_SECOND - 1;}#endifint libc_get_time(struct timespec *time){    rt_tick_t tick;    static rt_bool_t inited = 0;    RT_ASSERT(time != RT_NULL);    /* initialize system time */    if (inited == 0)    {        libc_system_time_init();        inited = 1;    }    /* get tick */    tick = rt_tick_get();    time->tv_sec = _timevalue.tv_sec + tick / RT_TICK_PER_SECOND;    time->tv_nsec = (_timevalue.tv_usec + (tick % RT_TICK_PER_SECOND) * MICROSECOND_PER_TICK) * 1000;    return 0;}int_gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp){    struct timespec tp;    if (libc_get_time(&tp) == 0)    {        if (__tp != RT_NULL)        {            __tp->tv_sec  = tp.tv_sec;            __tp->tv_usec = tp.tv_nsec / 1000UL;        }        return tp.tv_sec;    }    /* return "not supported" */    ptr->_errno = ENOTSUP;    return -1;}#endif/* Memory routine */void *_malloc_r (struct _reent *ptr, size_t size){    void* result;    result = (void*)rt_malloc (size);    if (result == RT_NULL)    {        ptr->_errno = ENOMEM;    }    return result;}void *_realloc_r (struct _reent *ptr, void *old, size_t newlen){    void* result;    result = (void*)rt_realloc (old, newlen);    if (result == RT_NULL)    {        ptr->_errno = ENOMEM;    }    return result;}void *_calloc_r (struct _reent *ptr, size_t size, size_t len){    void* result;    result = (void*)rt_calloc (size, len);    if (result == RT_NULL)    {        ptr->_errno = ENOMEM;    }    return result;}void_free_r (struct _reent *ptr, void *addr){    rt_free (addr);}voidexit (int status){#ifdef RT_USING_MODULE    if (dlmodule_self())    {        dlmodule_exit(status);    }#endif    rt_kprintf("thread:%s exit with %d\n", rt_thread_self()->name, status);    RT_ASSERT(0);    while (1);}void_system(const char *s){    /* not support this call */    return;}void __libc_init_array(void){    /* we not use __libc init_aray to initialize C++ objects */}void abort(void){    if (rt_thread_self())    {        rt_thread_t self = rt_thread_self();        rt_kprintf("thread:%-8.*s abort!\n", RT_NAME_MAX, self->name);        rt_thread_suspend(self);        rt_schedule();    }    while (1);}uid_t getuid(void){    return 0;}mode_t umask(mode_t mask){    return 022;}int flock(int fd, int operation){    return 0;}
 |