public inbox for newlib-cvs@sourceware.org help / color / mirror / Atom feed
From: Sebastian Huber <sh@sourceware.org> To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] RTEMS: Add missing functions to crt0 Date: Mon, 20 Nov 2017 07:54:00 -0000 [thread overview] Message-ID: <20171120075438.121091.qmail@sourceware.org> (raw) https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=0e3e3753776d715a6032440e428052f036a29fac commit 0e3e3753776d715a6032440e428052f036a29fac Author: Sebastian Huber <sebastian.huber@embedded-brains.de> Date: Mon Nov 20 08:52:09 2017 +0100 RTEMS: Add missing functions to crt0 This helps to get some more features from libstdc++. Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de> Diff: --- newlib/libc/sys/rtems/crt0.c | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/newlib/libc/sys/rtems/crt0.c b/newlib/libc/sys/rtems/crt0.c index 0e9d426..a565274 100644 --- a/newlib/libc/sys/rtems/crt0.c +++ b/newlib/libc/sys/rtems/crt0.c @@ -10,12 +10,13 @@ * but this is enough to satisfy the autoconf macro AC_PROG_CC. */ +#include <sys/lock.h> +#include <sys/stat.h> +#include <sys/uio.h> #include <reent.h> - -#include <signal.h> /* sigset_t */ -#include <time.h> /* struct timespec */ -#include <unistd.h> /* isatty */ -#include <sys/lock.h> /* _Mutex_recursive_Control */ +#include <signal.h> +#include <time.h> +#include <unistd.h> #include <machine/_arc4random.h> #include <machine/_libatomic.h> @@ -97,6 +98,7 @@ RTEMS_STUB(int, access(const char *pathname, int mode), { return -1; }) RTEMS_STUB(int, clock_gettime(clockid_t clk_id, struct timespec *tp), { return -1; }) RTEMS_STUB(int, close (int fd), { return -1; }) RTEMS_STUB(int, dup2(int oldfd, int newfd), { return -1; }) +RTEMS_STUB(int, fchmod(int fd, mode_t mode ), { return -1; }) RTEMS_STUB(int, fcntl( int fd, int cmd, ... /* arg */ ), { return -1; }) RTEMS_STUB(pid_t, fork(void), { return -1; }) RTEMS_STUB(int, fstat(int fd, struct stat *buf), { return -1; }) @@ -113,10 +115,12 @@ RTEMS_STUB(int, lstat(const char *path, struct stat *buf), { return -1; }) RTEMS_STUB(int, open(const char *pathname, int flags, int mode), { return -1; }) RTEMS_STUB(int, pipe(int pipefd[2]), { return -1; }) RTEMS_STUB(_ssize_t, read(int fd, void *buf, size_t count), { return -1; }) +RTEMS_STUB(ssize_t, readv (int fd, const struct iovec *iov, int iovcnt), { return -1; }) RTEMS_STUB(int, sched_yield(void), { return -1; }) RTEMS_STUB(int, sigfillset(sigset_t *set), { return -1; }) RTEMS_STUB(int, sigprocmask(int how, const sigset_t *set, sigset_t *oldset), { return -1; }) RTEMS_STUB(int, stat(const char *path, struct stat *buf), { return -1; }) +RTEMS_STUB(long, sysconf(int name), { return -1; }) RTEMS_STUB(int, unlink(const char *pathname), { return -1; }) RTEMS_STUB(pid_t, vfork(void), { return -1; }) #if !defined(_NO_POPEN) && !defined(_NO_WORDEXP) @@ -124,6 +128,7 @@ RTEMS_STUB(pid_t, vfork(void), { return -1; }) RTEMS_STUB(int, waitpid (pid_t pid, int *status, int options), { return -1; }) #endif RTEMS_STUB(_ssize_t, write (int fd, const void *buf, size_t nbytes), { return -1; }) +RTEMS_STUB(ssize_t, writev (int fd, const struct iovec *iov, int iovcnt), { return -1; }) /* stubs for functions from reent.h */ RTEMS_STUB(int, _close_r (struct _reent *r, int fd), { return -1; })
reply other threads:[~2017-11-20 7:54 UTC|newest] Thread overview: [no followups] expand[flat|nested] mbox.gz Atom feed
Reply instructions: You may reply publicly to this message via plain-text email using any one of the following methods: * Save the following mbox file, import it into your mail client, and reply-to-all from there: mbox Avoid top-posting and favor interleaved quoting: https://en.wikipedia.org/wiki/Posting_style#Interleaved_style * Reply using the --to, --cc, and --in-reply-to switches of git-send-email(1): git send-email \ --in-reply-to=20171120075438.121091.qmail@sourceware.org \ --to=sh@sourceware.org \ --cc=newlib-cvs@sourceware.org \ /path/to/YOUR_REPLY https://kernel.org/pub/software/scm/git/docs/git-send-email.html * If your mail client supports setting the In-Reply-To header via mailto: links, try the mailto: linkBe sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).