blob: fa04b20b072313c4b6826e87d4f2c86663907764 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
/* From libc-5.3.12 */
/*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <unistd.h>
#include <sys/syscall.h>
#include <errno.h>
#include "sysdep.h"
extern void * __curbrk attribute_hidden;
extern int __init_brk (void) attribute_hidden;
void *
sbrk(intptr_t increment)
{
if (__init_brk () == 0) {
void * tmp = __curbrk + increment;
/*
* Notice that we don't need to save/restore the GOT
* register since that is not call clobbered by the syscall.
*/
__asm__ ("move.d %1,$r10\n\t"
"movu.w " STR(__NR_brk) ",$r9\n\t"
"break 13\n\t"
"move.d $r10, %0"
: "=r" (__curbrk)
: "g" (tmp)
: "r9", "r10");
if (__curbrk == tmp)
return tmp - increment;
__set_errno(ENOMEM);
return ((void *) -1);
}
return ((void *) -1);
}
libc_hidden_def(sbrk)
|