2007-12-05 Till Straumann <strauman@slac.stanford.edu>

* shared/irq/irq_supp.h: removed stray '*/'. Removed
	inclusion of <stdlib.h> which is unnecessary and broke
	if_dc in an obscure way (due to malloc/free redefinition
	in the networking code).
This commit is contained in:
Till Straumann
2007-12-05 19:49:37 +00:00
parent 9166e1ddac
commit bc1077489c
2 changed files with 10 additions and 4 deletions

View File

@@ -1,3 +1,10 @@
2007-12-05 Till Straumann <strauman@slac.stanford.edu>
* shared/irq/irq_supp.h: removed stray '*/'. Removed
inclusion of <stdlib.h> which is unnecessary and broke
if_dc in an obscure way (due to malloc/free redefinition
in the networking code).
2007-12-05 Till Straumann <strauman@slac.stanford.edu>
* shared/irq/irq_asm.S, shared/vectors/vectors.S,

View File

@@ -6,9 +6,6 @@
* $Id$
*/
#include <stdlib.h>
#include <stdint.h>
#ifndef IRQ_SHARED_IRQ_C_GLUE_H
#define IRQ_SHARED_IRQ_C_GLUE_H
/*
@@ -26,6 +23,8 @@
#define BSP_SHARED_HANDLER_SUPPORT 1
#endif
#include <rtems.h>
#include <stdint.h>
#include <rtems/irq.h>
#ifdef __cplusplus
@@ -85,7 +84,7 @@ bsp_irq_dispatch_list(
_ISR_Set_level(0);
#ifndef BSP_SHARED_HANDLER_SUPPORT
rtems_hdl_tbl[irq].hdl(rtems_hdl_tbl[irq].handle); */
rtems_hdl_tbl[irq].hdl(rtems_hdl_tbl[irq].handle);
#else
{
rtems_irq_connect_data* vchain;