未验证 提交 0f288416 编写于 作者: B Bernard Xiong 提交者: GitHub

Merge pull request #4364 from mysterywolf/unistd

[libc][unistd] add getxxid() functions
...@@ -15,7 +15,9 @@ ...@@ -15,7 +15,9 @@
typedef int32_t clockid_t; typedef int32_t clockid_t;
typedef int32_t key_t; /* Used for interprocess communication. */ typedef int32_t key_t; /* Used for interprocess communication. */
typedef int32_t pid_t; /* Used for process IDs and process group IDs. */ typedef int pid_t; /* Used for process IDs and process group IDs. */
typedef unsigned short uid_t;
typedef unsigned short gid_t;
#ifndef ARCH_CPU_64BIT #ifndef ARCH_CPU_64BIT
typedef signed int ssize_t; /* Used for a count of bytes or an error indication. */ typedef signed int ssize_t; /* Used for a count of bytes or an error indication. */
#else #else
......
...@@ -73,4 +73,11 @@ char * ttyname (int desc); ...@@ -73,4 +73,11 @@ char * ttyname (int desc);
unsigned int sleep(unsigned int seconds); unsigned int sleep(unsigned int seconds);
int usleep(useconds_t usec); int usleep(useconds_t usec);
pid_t getpid(void);
pid_t getppid(void);
uid_t getuid(void);
uid_t geteuid(void);
gid_t getgid(void);
gid_t getegid(void);
#endif /* _SYS_UNISTD_H */ #endif /* _SYS_UNISTD_H */
...@@ -49,3 +49,40 @@ int usleep(useconds_t usec) ...@@ -49,3 +49,40 @@ int usleep(useconds_t usec)
return 0; return 0;
} }
RTM_EXPORT(usleep); RTM_EXPORT(usleep);
pid_t getpid(void)
{
/*TODO*/
return 0;
}
RTM_EXPORT(getpid);
pid_t getppid(void)
{
return 0;
}
RTM_EXPORT(getppid);
uid_t getuid(void)
{
return 0; /*ROOT*/
}
RTM_EXPORT(getuid);
uid_t geteuid(void)
{
return 0; /*ROOT*/
}
RTM_EXPORT(geteuid);
gid_t getgid(void)
{
return 0; /*ROOT*/
}
RTM_EXPORT(getgid);
gid_t getegid(void)
{
return 0; /*ROOT*/
}
RTM_EXPORT(getegid);
...@@ -14,7 +14,9 @@ ...@@ -14,7 +14,9 @@
typedef int32_t clockid_t; typedef int32_t clockid_t;
typedef int32_t key_t; /* Used for interprocess communication. */ typedef int32_t key_t; /* Used for interprocess communication. */
typedef int32_t pid_t; /* Used for process IDs and process group IDs. */ typedef int pid_t; /* Used for process IDs and process group IDs. */
typedef unsigned short uid_t;
typedef unsigned short gid_t;
#ifndef ARCH_CPU_64BIT #ifndef ARCH_CPU_64BIT
typedef signed int ssize_t; /* Used for a count of bytes or an error indication. */ typedef signed int ssize_t; /* Used for a count of bytes or an error indication. */
#else #else
......
...@@ -47,4 +47,11 @@ char * ttyname (int desc); ...@@ -47,4 +47,11 @@ char * ttyname (int desc);
unsigned int sleep(unsigned int seconds); unsigned int sleep(unsigned int seconds);
int usleep(useconds_t usec); int usleep(useconds_t usec);
pid_t getpid(void);
pid_t getppid(void);
uid_t getuid(void);
uid_t geteuid(void);
gid_t getgid(void);
gid_t getegid(void);
#endif /* _SYS_UNISTD_H */ #endif /* _SYS_UNISTD_H */
...@@ -7,12 +7,13 @@ ...@@ -7,12 +7,13 @@
* Date Author Notes * Date Author Notes
* 2021-02-11 Meco Man remove _gettimeofday_r() and _times_r() * 2021-02-11 Meco Man remove _gettimeofday_r() and _times_r()
* 2020-02-13 Meco Man re-implement exit() and abort() * 2020-02-13 Meco Man re-implement exit() and abort()
* 2020-02-21 Meco Man improve and beautify syscalls
*/ */
#include <reent.h> #include <reent.h>
#include <sys/errno.h> #include <errno.h>
#include <sys/time.h>
#include <stdio.h> #include <stdio.h>
#include <sys/time.h>
#include <rtthread.h> #include <rtthread.h>
...@@ -34,11 +35,19 @@ __errno () ...@@ -34,11 +35,19 @@ __errno ()
} }
#endif #endif
int
_getpid_r(struct _reent *ptr)
{
return 0;
}
int int
_close_r(struct _reent *ptr, int fd) _close_r(struct _reent *ptr, int fd)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
return close(fd); return close(fd);
#endif #endif
...@@ -76,20 +85,14 @@ _fstat_r(struct _reent *ptr, int fd, struct stat *pstat) ...@@ -76,20 +85,14 @@ _fstat_r(struct _reent *ptr, int fd, struct stat *pstat)
return -1; return -1;
} }
int
_getpid_r(struct _reent *ptr)
{
return 0;
}
int int
_isatty_r(struct _reent *ptr, int fd) _isatty_r(struct _reent *ptr, int fd)
{ {
if (fd >=0 && fd < 3) return 1; if (fd >=0 && fd < 3)
return 1;
/* return "not supported" */ ptr->_errno = ENOTTY ;
ptr->_errno = ENOTSUP; return 0;
return -1;
} }
int int
...@@ -112,7 +115,9 @@ _off_t ...@@ -112,7 +115,9 @@ _off_t
_lseek_r(struct _reent *ptr, int fd, _off_t pos, int whence) _lseek_r(struct _reent *ptr, int fd, _off_t pos, int whence)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
_off_t rc; _off_t rc;
...@@ -125,7 +130,9 @@ int ...@@ -125,7 +130,9 @@ int
_mkdir_r(struct _reent *ptr, const char *name, int mode) _mkdir_r(struct _reent *ptr, const char *name, int mode)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
int rc; int rc;
...@@ -138,7 +145,9 @@ int ...@@ -138,7 +145,9 @@ int
_open_r(struct _reent *ptr, const char *file, int flags, int mode) _open_r(struct _reent *ptr, const char *file, int flags, int mode)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
int rc; int rc;
...@@ -151,7 +160,9 @@ _ssize_t ...@@ -151,7 +160,9 @@ _ssize_t
_read_r(struct _reent *ptr, int fd, void *buf, size_t nbytes) _read_r(struct _reent *ptr, int fd, void *buf, size_t nbytes)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
_ssize_t rc; _ssize_t rc;
...@@ -164,7 +175,9 @@ int ...@@ -164,7 +175,9 @@ int
_rename_r(struct _reent *ptr, const char *old, const char *new) _rename_r(struct _reent *ptr, const char *old, const char *new)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
int rc; int rc;
...@@ -184,7 +197,9 @@ int ...@@ -184,7 +197,9 @@ int
_stat_r(struct _reent *ptr, const char *file, struct stat *pstat) _stat_r(struct _reent *ptr, const char *file, struct stat *pstat)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
return 0; /* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#else #else
int rc; int rc;
...@@ -197,6 +212,8 @@ int ...@@ -197,6 +212,8 @@ int
_unlink_r(struct _reent *ptr, const char *file) _unlink_r(struct _reent *ptr, const char *file)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
/* return "not supported" */
ptr->_errno = ENOTSUP;
return -1; return -1;
#else #else
return unlink(file); return unlink(file);
...@@ -211,11 +228,11 @@ _wait_r(struct _reent *ptr, int *status) ...@@ -211,11 +228,11 @@ _wait_r(struct _reent *ptr, int *status)
return -1; return -1;
} }
#ifdef RT_USING_DEVICE
_ssize_t _ssize_t
_write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes) _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
{ {
#ifndef RT_USING_DFS #ifndef RT_USING_DFS
#ifdef RT_USING_DEVICE
if (fileno(stdout) == fd) if (fileno(stdout) == fd)
{ {
rt_device_t console; rt_device_t console;
...@@ -225,7 +242,11 @@ _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes) ...@@ -225,7 +242,11 @@ _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
} }
return 0; return 0;
#else
/* return "not supported" */
ptr->_errno = ENOTSUP;
return -1;
#endif /*RT_USING_DEVICE*/
#else #else
_ssize_t rc; _ssize_t rc;
...@@ -233,7 +254,6 @@ _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes) ...@@ -233,7 +254,6 @@ _write_r(struct _reent *ptr, int fd, const void *buf, size_t nbytes)
return rc; return rc;
#endif #endif
} }
#endif
/* Memory routine */ /* Memory routine */
void * void *
...@@ -304,11 +324,6 @@ void __libc_init_array(void) ...@@ -304,11 +324,6 @@ void __libc_init_array(void)
/* we not use __libc init_aray to initialize C++ objects */ /* we not use __libc init_aray to initialize C++ objects */
} }
uid_t getuid(void)
{
return 0;
}
mode_t umask(mode_t mask) mode_t umask(mode_t mask)
{ {
return 022; return 022;
...@@ -320,7 +335,7 @@ int flock(int fd, int operation) ...@@ -320,7 +335,7 @@ int flock(int fd, int operation)
} }
/* /*
These functions will be implemented and replaced by the 'common/time.c' file These functions are implemented and replaced by the 'common/time.c' file
int _gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp); int _gettimeofday_r(struct _reent *ptr, struct timeval *__tp, void *__tzp);
_CLOCK_T_ _times_r(struct _reent *ptr, struct tms *ptms); _CLOCK_T_ _times_r(struct _reent *ptr, struct tms *ptms);
*/ */
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册