summaryrefslogtreecommitdiffhomepage
path: root/digital/ucoolib/ucoolib/arch/syscalls.newlib.c
diff options
context:
space:
mode:
authorNicolas Schodet2012-12-22 09:21:12 +0100
committerNicolas Schodet2012-12-23 12:42:25 +0100
commit1f29aff77b6bbda0fecc636c8e33dcc2deab664e (patch)
tree7543564a09651a7c2eddd8d134bcacadd3a6def1 /digital/ucoolib/ucoolib/arch/syscalls.newlib.c
parent2aa471e14cd1ad9a2066159925cdb998fe9eae05 (diff)
digital/ucoolib/ucoolib/arch: compile syscalls as C++
Diffstat (limited to 'digital/ucoolib/ucoolib/arch/syscalls.newlib.c')
-rw-r--r--digital/ucoolib/ucoolib/arch/syscalls.newlib.c130
1 files changed, 0 insertions, 130 deletions
diff --git a/digital/ucoolib/ucoolib/arch/syscalls.newlib.c b/digital/ucoolib/ucoolib/arch/syscalls.newlib.c
deleted file mode 100644
index 308b4b1b..00000000
--- a/digital/ucoolib/ucoolib/arch/syscalls.newlib.c
+++ /dev/null
@@ -1,130 +0,0 @@
-/* ucoolib - Microcontroller object oriented library. {{{
- *
- * Copyright (C) 2012 Nicolas Schodet
- *
- * APBTeam:
- * Web: http://apbteam.org/
- * Email: team AT apbteam DOT org
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
- *
- * }}} */
-#include <reent.h>
-#include <sys/stat.h>
-#include <errno.h>
-
-/** This is needed by C++ ABI, this simple definition will do. See:
- * http://lists.debian.org/debian-gcc/2003/07/msg00057.html */
-void *__dso_handle = (void*) &__dso_handle;
-
-/** This function is called when a pure virtual function is called. This is
- * needed by linker because when a abstract class constructor or destructor is
- * called, object is not complete. Replace the one provided by the toolchain
- * to avoid including the world. */
-void
-__cxa_pure_virtual (void)
-{
- while (1)
- ;
-}
-
-/** Increase program data space. */
-void *
-_sbrk_r (struct _reent *ptr, int incr)
-{
- extern char end; /* Defined in linker script. */
- static char *heap_end;
- char *prev_heap_end;
- if (heap_end == 0)
- heap_end = &end;
- prev_heap_end = heap_end;
- heap_end += incr;
- return (void *) prev_heap_end;
-}
-
-/** Exit program, endless loop to stop program, to be improved. */
-void
-_exit (int n)
-{
- while (1)
- ;
-}
-
-/** Close a file, unimplemented. */
-int
-_close_r (struct _reent *ptr, int fd)
-{
- return -1;
-}
-
-/** Status of open file, consider all files as character devices. */
-int
-_fstat_r (struct _reent *ptr, int fd, struct stat *st)
-{
- st->st_mode = S_IFCHR;
- return 0;
-}
-
-/** Get PID, minimal implementation. */
-int
-_getpid_r (struct _reent *ptr)
-{
- return 1;
-}
-
-/** Whether file is a terminal, consider this is always true. */
-int
-_isatty_r (struct _reent *ptr, int fd)
-{
- return 1;
-}
-
-/** Send a signal, no process, no signal. */
-int
-_kill_r (struct _reent *ptr, int pid, int sig)
-{
- ptr->_errno = EINVAL;
- return -1;
-}
-
-/** Set position in a file, no-op. */
-off_t
-_lseek_r (struct _reent *ptr, int fd, off_t pos, int whence)
-{
- return 0;
-}
-
-/** Open a file, unimplemented. */
-int
-_open_r (struct _reent *ptr, const char *file, int flags, int mode)
-{
- return -1;
-}
-
-/** Read from file, to be improved to read from stream. */
-int
-_read_r (struct _reent *ptr, int fd, void *buf, size_t cnt)
-{
- return 0;
-}
-
-/** Write to file, to be improved to write to stream. */
-int
-_write_r (struct _reent *ptr, int fd, const void *buf, size_t cnt)
-{
- ptr->_errno = EBADF;
- return -1;
-}
-