Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Utility functions needed for (some) EABI conformant tool chains. |
| 3 | * |
| 4 | * (C) Copyright 2009 Wolfgang Denk <wd@denx.de> |
| 5 | * |
| 6 | * This program is Free Software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License as |
| 8 | * published by the Free Software Foundation; either version 2 of the |
| 9 | * License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | |
| 14 | int raise (int signum) |
| 15 | { |
Christian Riesch | 5cb939f | 2011-11-29 00:11:03 +0000 | [diff] [blame] | 16 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 17 | printf("raise: Signal # %d caught\n", signum); |
Christian Riesch | 5cb939f | 2011-11-29 00:11:03 +0000 | [diff] [blame] | 18 | #endif |
Wolfgang Denk | f772acf | 2009-08-17 13:17:29 +0200 | [diff] [blame] | 19 | return 0; |
| 20 | } |
Wolfgang Denk | cd4b02b | 2010-05-10 23:08:02 +0200 | [diff] [blame] | 21 | |
| 22 | /* Dummy function to avoid linker complaints */ |
| 23 | void __aeabi_unwind_cpp_pr0(void) |
| 24 | { |
| 25 | }; |
Wolfgang Grandegger | 953209b | 2011-11-10 01:51:29 +0000 | [diff] [blame] | 26 | |
| 27 | void __aeabi_unwind_cpp_pr1(void) |
| 28 | { |
| 29 | }; |