From 6eb62a3f9de3e45abe91fec03ff45f1a011f48bd Mon Sep 17 00:00:00 2001 From: mysterywolf <920369182@qq.com> Date: Sat, 5 Sep 2020 17:50:54 +0800 Subject: [PATCH] =?UTF-8?q?=E5=B0=86unistd.c=E4=B8=8D=E5=86=8D=E6=94=BE?= =?UTF-8?q?=E5=9C=A8common=E4=B8=AD=EF=BC=8C=E5=88=86=E6=95=A3=E5=88=B0?= =?UTF-8?q?=E5=90=84=E4=B8=AA=E5=BA=93=E4=B8=AD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../compilers/{common => armlibc}/unistd.c | 4 +++ components/libc/compilers/dlib/unistd.c | 29 +++++++++++++++++++ components/libc/compilers/newlib/unistd.c | 29 +++++++++++++++++++ 3 files changed, 62 insertions(+) rename components/libc/compilers/{common => armlibc}/unistd.c (94%) create mode 100644 components/libc/compilers/dlib/unistd.c create mode 100644 components/libc/compilers/newlib/unistd.c diff --git a/components/libc/compilers/common/unistd.c b/components/libc/compilers/armlibc/unistd.c similarity index 94% rename from components/libc/compilers/common/unistd.c rename to components/libc/compilers/armlibc/unistd.c index 04a0886655..e2f2827beb 100644 --- a/components/libc/compilers/common/unistd.c +++ b/components/libc/compilers/armlibc/unistd.c @@ -11,6 +11,8 @@ #include #include +#ifdef RT_USING_POSIX + #ifdef RT_USING_POSIX_TERMIOS int isatty(int fd) { @@ -23,3 +25,5 @@ char *ttyname(int fd) { return "/dev/tty0"; /*TODO: need to add more specific*/ } + +#endif diff --git a/components/libc/compilers/dlib/unistd.c b/components/libc/compilers/dlib/unistd.c new file mode 100644 index 0000000000..e2f2827beb --- /dev/null +++ b/components/libc/compilers/dlib/unistd.c @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2006-2018, RT-Thread Development Team + * + * SPDX-License-Identifier: Apache-2.0 + * + * Change Logs: + * Date Author Notes + * 2020-09-01 Meco Man First Version + */ + +#include +#include + +#ifdef RT_USING_POSIX + +#ifdef RT_USING_POSIX_TERMIOS +int isatty(int fd) +{ + struct termios ts; + return(tcgetattr(fd,&ts) != -1);/*true if no error (is a tty)*/ +} +#endif + +char *ttyname(int fd) +{ + return "/dev/tty0"; /*TODO: need to add more specific*/ +} + +#endif diff --git a/components/libc/compilers/newlib/unistd.c b/components/libc/compilers/newlib/unistd.c new file mode 100644 index 0000000000..e2f2827beb --- /dev/null +++ b/components/libc/compilers/newlib/unistd.c @@ -0,0 +1,29 @@ +/* + * Copyright (c) 2006-2018, RT-Thread Development Team + * + * SPDX-License-Identifier: Apache-2.0 + * + * Change Logs: + * Date Author Notes + * 2020-09-01 Meco Man First Version + */ + +#include +#include + +#ifdef RT_USING_POSIX + +#ifdef RT_USING_POSIX_TERMIOS +int isatty(int fd) +{ + struct termios ts; + return(tcgetattr(fd,&ts) != -1);/*true if no error (is a tty)*/ +} +#endif + +char *ttyname(int fd) +{ + return "/dev/tty0"; /*TODO: need to add more specific*/ +} + +#endif