Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / unix / sysv / linux / sparc / sparc32 / brk.c
blob40152d5ae0f1c3ea6ae1676d81a3ec218a33294c
1 /* brk system call for Linux/SPARC.
2 Copyright (C) 1995-2014 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Miguel de Icaza (miguel@nuclecu.unam.mx)
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, see
18 <http://www.gnu.org/licenses/>. */
20 #include <errno.h>
21 #include <unistd.h>
22 #include <sysdep.h>
24 /* This must be initialized data because commons can't have aliases. */
25 void *__curbrk = 0;
27 /* Old braindamage in GCC's crtstuff.c requires this symbol in an attempt
28 to work around different old braindamage in the old Linux ELF dynamic
29 linker. */
30 weak_alias (__curbrk, ___brk_addr)
32 int
33 __brk (void *addr)
35 void *newbrk;
38 register void *o0 __asm__("%o0") = addr;
39 register int g1 __asm__("%g1") = __NR_brk;
40 __asm ("t 0x10" : "=r"(o0) : "r"(g1), "0"(o0) : "cc");
41 newbrk = o0;
44 __curbrk = newbrk;
46 if (newbrk < addr)
48 __set_errno (ENOMEM);
49 return -1;
52 return 0;
54 weak_alias (__brk, brk)