summaryrefslogtreecommitdiffstats
path: root/doc/tools
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-12-06 17:50:24 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-12-06 17:50:24 +0000
commitb2db28d9596ee525c70dfc07ef1c274afca7f32d (patch)
treebe82c99950818855955b0fdfc4f9f21e2d6009b2 /doc/tools
parent2007-12-06 Joel Sherrill <joel.sherrill@OARcorp.com> (diff)
downloadrtems-b2db28d9596ee525c70dfc07ef1c274afca7f32d.tar.bz2
2007-12-06 Ralf Corsepius <ralf.corsepius@rtems.org>
* chain.c: Reflect removal of isr.h. * isr.h: Remove. * Makefile.am: Remove isr.h.
Diffstat (limited to 'doc/tools')
-rw-r--r--doc/tools/bmenu/ChangeLog6
-rw-r--r--doc/tools/bmenu/Makefile.am2
-rw-r--r--doc/tools/bmenu/chain.c16
-rw-r--r--doc/tools/bmenu/isr.h18
4 files changed, 7 insertions, 35 deletions
diff --git a/doc/tools/bmenu/ChangeLog b/doc/tools/bmenu/ChangeLog
index 9ef8bbc269..3fe72b7654 100644
--- a/doc/tools/bmenu/ChangeLog
+++ b/doc/tools/bmenu/ChangeLog
@@ -1,3 +1,9 @@
+2007-12-06 Ralf Corsepius <ralf.corsepius@rtems.org>
+
+ * chain.c: Reflect removal of isr.h.
+ * isr.h: Remove.
+ * Makefile.am: Remove isr.h.
+
2003-12-12 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Cosmetics.
diff --git a/doc/tools/bmenu/Makefile.am b/doc/tools/bmenu/Makefile.am
index 3f53ef1e57..272230bd28 100644
--- a/doc/tools/bmenu/Makefile.am
+++ b/doc/tools/bmenu/Makefile.am
@@ -8,5 +8,5 @@
noinst_PROGRAMS = bmenu2
-bmenu2_SOURCES = address.h chain.c isr.h address.inl chain.h bmenu2.c base.h \
+bmenu2_SOURCES = address.h chain.c address.inl chain.h bmenu2.c base.h \
chain.inl system.h
diff --git a/doc/tools/bmenu/chain.c b/doc/tools/bmenu/chain.c
index 7047b42d56..847f23b670 100644
--- a/doc/tools/bmenu/chain.c
+++ b/doc/tools/bmenu/chain.c
@@ -11,7 +11,6 @@
#include "system.h"
#include "address.h"
#include "chain.h"
-#include "isr.h"
/*PAGE
*
@@ -76,14 +75,11 @@ Chain_Node *_Chain_Get(
Chain_Control *the_chain
)
{
- ISR_Level level;
Chain_Node *return_node;
return_node = NULL;
- _ISR_Disable( level );
if ( !_Chain_Is_empty( the_chain ) )
return_node = _Chain_Get_first_unprotected( the_chain );
- _ISR_Enable( level );
return return_node;
}
@@ -108,11 +104,7 @@ void _Chain_Append(
Chain_Node *node
)
{
- ISR_Level level;
-
- _ISR_Disable( level );
_Chain_Append_unprotected( the_chain, node );
- _ISR_Enable( level );
}
/*PAGE
@@ -134,11 +126,7 @@ void _Chain_Extract(
Chain_Node *node
)
{
- ISR_Level level;
-
- _ISR_Disable( level );
_Chain_Extract_unprotected( node );
- _ISR_Enable( level );
}
/*PAGE
@@ -163,11 +151,7 @@ void _Chain_Insert(
Chain_Node *node
)
{
- ISR_Level level;
-
- _ISR_Disable( level );
_Chain_Insert_unprotected( after_node, node );
- _ISR_Enable( level );
}
/*PAGE
diff --git a/doc/tools/bmenu/isr.h b/doc/tools/bmenu/isr.h
deleted file mode 100644
index 33eaefb127..0000000000
--- a/doc/tools/bmenu/isr.h
+++ /dev/null
@@ -1,18 +0,0 @@
-/*
- * COPYRIGHT (c) 1988-2002.
- * On-Line Applications Research Corporation (OAR).
- * All rights reserved.
- *
- * $Id$
- */
-
-
-#ifndef __ISR_h
-#define __ISR_h
-
-typedef unsigned32 ISR_Level;
-
-#define _ISR_Disable
-#define _ISR_Enable
-
-#endif