From 85e37163987c9d12f403ec3be00233197d010b3c Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Sep 2008 22:16:29 +0000 Subject: 2008-09-16 Joel Sherrill * shared/m68kbspgetworkarea.c: Removed. --- c/src/lib/libbsp/m68k/ChangeLog | 4 +++ c/src/lib/libbsp/m68k/shared/m68kbspgetworkarea.c | 44 ----------------------- 2 files changed, 4 insertions(+), 44 deletions(-) delete mode 100644 c/src/lib/libbsp/m68k/shared/m68kbspgetworkarea.c (limited to 'c') diff --git a/c/src/lib/libbsp/m68k/ChangeLog b/c/src/lib/libbsp/m68k/ChangeLog index 2be51921d0..c89a7b24d0 100644 --- a/c/src/lib/libbsp/m68k/ChangeLog +++ b/c/src/lib/libbsp/m68k/ChangeLog @@ -1,3 +1,7 @@ +2008-09-16 Joel Sherrill + + * shared/m68kbspgetworkarea.c: Removed. + 2008-09-16 Joel Sherrill * shared/m68kbspgetworkarea.c: Add use of bsp_get_work_area() in its diff --git a/c/src/lib/libbsp/m68k/shared/m68kbspgetworkarea.c b/c/src/lib/libbsp/m68k/shared/m68kbspgetworkarea.c deleted file mode 100644 index 6009d195f2..0000000000 --- a/c/src/lib/libbsp/m68k/shared/m68kbspgetworkarea.c +++ /dev/null @@ -1,44 +0,0 @@ -/* - * This routine is an implementation of the bsp_get_work_area() - * that can be used by all m68k BSPs following linkcmds conventions - * regarding heap, stack, and workspace allocation. - * - * COPYRIGHT (c) 1989-2008. - * On-Line Applications Research Corporation (OAR). - * - * The license and distribution terms for this file may be - * found in the file LICENSE in this distribution or at - * http://www.rtems.com/license/LICENSE. - * - * $Id$ - */ - -#include -#include - -/* - * These are provided by the linkcmds of ALL M68K BSPs which use this file. - */ -extern char _RamBase[]; -extern char _WorkspaceBase[]; -extern char _HeapSize[]; -extern char _RamSize[]; - -/* - * This method returns the base address and size of the area which - * is to be allocated between the RTEMS Workspace and the C Program - * Heap. - */ -void bsp_get_work_area( - void **work_area_start, - size_t *work_area_size, - void **heap_start, - size_t *heap_size -) -{ - *work_area_start = _WorkspaceBase; - *work_area_size = (uintptr_t)_RamBase + (uintptr_t) _RamSize - - (uintptr_t)_WorkspaceBase; - *heap_start = BSP_BOOTCARD_HEAP_USES_WORK_AREA; - *heap_size = (size_t) _HeapSize; -} -- cgit v1.2.3