diff options
author | Nick Clifton <nickc@redhat.com> | 2002-01-17 16:39:53 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-01-17 16:39:53 +0000 |
commit | b2db0ebcfe5ade4a1db755bca5112400a69be288 (patch) | |
tree | a4fe0a94bbf2ba68331117f6089e65e1276c281d /newlib/libc/sys/arm/syscalls.c | |
parent | 104c3be68177cc1f239d42bdfcc66f2bf5789942 (diff) | |
download | cygnal-b2db0ebcfe5ade4a1db755bca5112400a69be288.tar.gz cygnal-b2db0ebcfe5ade4a1db755bca5112400a69be288.tar.bz2 cygnal-b2db0ebcfe5ade4a1db755bca5112400a69be288.zip |
_sbrk(): Return -1 rather than aborting if too much memory is requested.
Diffstat (limited to 'newlib/libc/sys/arm/syscalls.c')
-rw-r--r-- | newlib/libc/sys/arm/syscalls.c | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/newlib/libc/sys/arm/syscalls.c b/newlib/libc/sys/arm/syscalls.c index 795f7784d..0483d4893 100644 --- a/newlib/libc/sys/arm/syscalls.c +++ b/newlib/libc/sys/arm/syscalls.c @@ -470,8 +470,6 @@ _getpid (int n) n = n; } -extern void abort (void); - caddr_t _sbrk (int incr) { @@ -486,8 +484,18 @@ _sbrk (int incr) if (heap_end + incr > stack_ptr) { + /* Some of the libstdc++-v3 tests rely upon detecting + out of memory errors, so do not abort here. */ +#if 0 + extern void abort (void); + _write (1, "_sbrk: Heap and stack collision\n", 32); + abort (); +#else + errno = ENOMEM; + return -1; +#endif } heap_end += incr; |