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