glibc/sysdeps/unix/mips/brk.S

49 lines
1.3 KiB
ArmAsm
Raw Normal View History

/* Copyright (C) 1992, 1995, 1997, 2002, 2003 Free Software Foundation, Inc.
This file is part of the GNU C Library.
1993-08-27 07:30:59 +08:00
Contributed by Brendan Kehoe (brendan@zen.org).
The GNU C Library is free software; you can redistribute it and/or
2001-07-06 12:56:23 +08:00
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
1993-08-27 07:30:59 +08:00
The GNU C Library 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
2001-07-06 12:56:23 +08:00
Lesser General Public License for more details.
1993-08-27 07:30:59 +08:00
2001-07-06 12:56:23 +08:00
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, write to the Free
Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
02111-1307 USA. */
1993-08-27 07:30:59 +08:00
#include <sysdep.h>
#include <sys/asm.h>
1993-08-27 07:30:59 +08:00
#ifndef SYS_brk
#define SYS_brk 17
#endif
#ifndef HAVE_GNU_LD
1997-07-13 07:28:11 +08:00
#define _end end
1993-08-27 07:30:59 +08:00
#endif
1997-07-13 07:28:11 +08:00
.data
1993-08-27 07:30:59 +08:00
ENTRY(__curbrk)
1997-07-13 07:28:11 +08:00
.word 0
.end __curbrk
1993-08-27 07:30:59 +08:00
1997-07-13 07:28:11 +08:00
.text
SYSCALL__(brk, 1)
.set reorder
/* Handle the query case. */
bnez a0, 1f
move a0, v0
1997-07-13 07:28:11 +08:00
1: /* Update __curbrk and exit cleanly. */
PTR_S a0, __curbrk
1993-08-27 07:30:59 +08:00
move v0, zero
1997-07-13 07:28:11 +08:00
jr ra
PSEUDO_END(__brk)
weak_alias (__brk, brk)