blob: e1b87bebadbf727dc425ce7c1899e1cb6896a879 [file] [log] [blame]
Wolfgang Denkf772acf2009-08-17 13:17:29 +02001/*
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
14int raise (int signum)
15{
Christian Riesch5cb939f2011-11-29 00:11:03 +000016#if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
Wolfgang Denkf772acf2009-08-17 13:17:29 +020017 printf("raise: Signal # %d caught\n", signum);
Christian Riesch5cb939f2011-11-29 00:11:03 +000018#endif
Wolfgang Denkf772acf2009-08-17 13:17:29 +020019 return 0;
20}
Wolfgang Denkcd4b02b2010-05-10 23:08:02 +020021
22/* Dummy function to avoid linker complaints */
23void __aeabi_unwind_cpp_pr0(void)
24{
25};