1 |
786 |
skrzyp |
#ifndef __LOADER_MEMORY_H__
|
2 |
|
|
#define __LOADER_MEMORY_H__
|
3 |
|
|
|
4 |
|
|
/* =================================================================
|
5 |
|
|
*
|
6 |
|
|
* loader_memory.h
|
7 |
|
|
*
|
8 |
|
|
* =================================================================
|
9 |
|
|
* ####ECOSGPLCOPYRIGHTBEGIN####
|
10 |
|
|
* -------------------------------------------
|
11 |
|
|
* This file is part of eCos, the Embedded Configurable Operating
|
12 |
|
|
* System.
|
13 |
|
|
* Copyright (C) 2006, 2008 Free Software Foundation, Inc.
|
14 |
|
|
*
|
15 |
|
|
* eCos is free software; you can redistribute it and/or modify it
|
16 |
|
|
* under the terms of the GNU General Public License as published by
|
17 |
|
|
* the Free Software Foundation; either version 2 or (at your option)
|
18 |
|
|
* any later version.
|
19 |
|
|
*
|
20 |
|
|
* eCos is distributed in the hope that it will be useful, but
|
21 |
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
23 |
|
|
* General Public License for more details.
|
24 |
|
|
*
|
25 |
|
|
* You should have received a copy of the GNU General Public License
|
26 |
|
|
* along with eCos; if not, write to the Free Software Foundation,
|
27 |
|
|
* Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
|
28 |
|
|
*
|
29 |
|
|
* As a special exception, if other files instantiate templates or
|
30 |
|
|
* use macros or inline functions from this file, or you compile this
|
31 |
|
|
* file and link it with other works to produce a work based on this
|
32 |
|
|
* file, this file does not by itself cause the resulting work to be
|
33 |
|
|
* covered by the GNU General Public License. However the source code
|
34 |
|
|
* for this file must still be made available in accordance with
|
35 |
|
|
* section (3) of the GNU General Public License.
|
36 |
|
|
*
|
37 |
|
|
* This exception does not invalidate any other reasons why a work
|
38 |
|
|
* based on this file might be covered by the GNU General Public
|
39 |
|
|
* License.
|
40 |
|
|
*
|
41 |
|
|
* -------------------------------------------
|
42 |
|
|
* ####ECOSGPLCOPYRIGHTEND####
|
43 |
|
|
* =================================================================
|
44 |
|
|
* #####DESCRIPTIONBEGIN####
|
45 |
|
|
*
|
46 |
|
|
* Author(s): Gernot Zankl zankl@decomsys.com
|
47 |
|
|
* Date: 2006-11-21
|
48 |
|
|
* Purpose:
|
49 |
|
|
* Description:
|
50 |
|
|
*
|
51 |
|
|
* ####DESCRIPTIONEND####
|
52 |
|
|
*
|
53 |
|
|
* =================================================================
|
54 |
|
|
*/
|
55 |
|
|
|
56 |
|
|
PELF_OBJECT cyg_ldr_open_library_memory(CYG_ADDRWORD);
|
57 |
|
|
void cyg_ldr_close_library_memory(PELF_OBJECT);
|
58 |
|
|
|
59 |
|
|
#endif // __LOADER_MEMORY_H__
|