Welcome to mirror list, hosted at ThFree Co, Russian Federation.

semihost-sys_sbrk.c « riscv « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cbd035832ba43fea68e5d5732deef583ae3a99d0 (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
/*
 * Copyright (C) 2020 Embecosm Limited
 * SPDX-License-Identifier: BSD-2-Clause
 */
/* Semihosting requires that sbrk be implemented without a syscall.  */
extern char _end[];               /* _end is set in the linker command file.  */
char *heap_ptr;

/*
 * sbrk -- changes heap size size.  Get nbytes more
 *         RAM.  We just increment a pointer in what's
 *         left of memory on the board.
 */
char *
_sbrk (nbytes)
     int nbytes;
{
  char *base;

  if (!heap_ptr)
    heap_ptr = (char *)&_end;
  base = heap_ptr;
  heap_ptr += nbytes;

  return base;
}