From 27565a655e8d233bef3d6c1809ad3b5cee8c8762 Mon Sep 17 00:00:00 2001 From: Joakim Gebart Date: Mon, 17 Aug 2015 11:50:40 +0200 Subject: [PATCH] cpu/native: remove dINT/eINT definitions --- cpu/native/include/cpu.h | 4 ---- cpu/native/irq_cpu.c | 11 ----------- 2 files changed, 15 deletions(-) diff --git a/cpu/native/include/cpu.h b/cpu/native/include/cpu.h index 2bfe4dbb53..56be162ef4 100644 --- a/cpu/native/include/cpu.h +++ b/cpu/native/include/cpu.h @@ -26,10 +26,6 @@ extern "C" { #endif -/* TODO: remove once these have been removed from RIOT: */ -void dINT(void); -void eINT(void); - /** * @brief Prints the last instruction's address */ diff --git a/cpu/native/irq_cpu.c b/cpu/native/irq_cpu.c index 16fcbcbce7..2d50f25403 100644 --- a/cpu/native/irq_cpu.c +++ b/cpu/native/irq_cpu.c @@ -218,17 +218,6 @@ int inISR(void) return _native_in_isr; } - -void dINT(void) -{ - disableIRQ(); -} - -void eINT(void) -{ - enableIRQ(); -} - int _native_popsig(void) { int nread, nleft, i;