Last change
on this file since 643 was
586,
checked in by alain, 11 years ago
|
Modify the name "boot" to "reset" to avoid confusion
between the pre-loader and the boot-loader...
Increase the size of the segment containing the stacks.
|
File size:
485 bytes
|
Line | |
---|
1 | /* |
---|
2 | * \file : reset_utils.h |
---|
3 | * \date : August 2012 |
---|
4 | * \author : Cesar Fuguet |
---|
5 | */ |
---|
6 | |
---|
7 | #ifndef BOOT_UTILS_H |
---|
8 | #define BOOT_UTILS_H |
---|
9 | |
---|
10 | #include <elf-types.h> |
---|
11 | #include <reset_tty.h> |
---|
12 | |
---|
13 | extern unsigned int proctime(); |
---|
14 | |
---|
15 | extern void* memcpy(void *_dst, const void *_src, unsigned int size); |
---|
16 | |
---|
17 | extern void* memset(void *_dst, const int value, unsigned int size); |
---|
18 | |
---|
19 | extern void reset_print_elf_phdr(Elf32_Phdr * elf_phdr_ptr); |
---|
20 | |
---|
21 | #endif |
---|
22 | |
---|
23 | // vim: tabstop=4 : softtabstop=4 : shiftwidth=4 : expandtab |
---|
24 | |
---|
Note: See
TracBrowser
for help on using the repository browser.