summaryrefslogtreecommitdiffstats
path: root/c/src/lib/include/rdbg/i386/rdbg_f.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-16 13:31:13 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-11-16 13:31:13 +0000
commit1bcdb3f6ec4574b680f3237ff7683fd7e961c76a (patch)
treebf0e71d7aa9b5a4f94640b590d7f9c0d8cce2d6c /c/src/lib/include/rdbg/i386/rdbg_f.h
parentRemoved nanosleep() since it is now in its own file. (diff)
downloadrtems-1bcdb3f6ec4574b680f3237ff7683fd7e961c76a.tar.bz2
Committed modifications from ITRON Task and Task Dependendent Synchronization
Working Group. Included are tests.
Diffstat (limited to 'c/src/lib/include/rdbg/i386/rdbg_f.h')
-rw-r--r--c/src/lib/include/rdbg/i386/rdbg_f.h41
1 files changed, 0 insertions, 41 deletions
diff --git a/c/src/lib/include/rdbg/i386/rdbg_f.h b/c/src/lib/include/rdbg/i386/rdbg_f.h
deleted file mode 100644
index c75cecc7bc..0000000000
--- a/c/src/lib/include/rdbg/i386/rdbg_f.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- **************************************************************************
- *
- * Component = RDBG
- * Module = rdbg_f.h
- *
- * Synopsis = Machine-dependent header file
- *
- * $Id$
- *
- **************************************************************************
- */
-
-#ifndef RDBG_F_H
-#define RDBG_F_H
-
-#include <rtems.h>
-#include <rdbg/remdeb.h>
-
-#define EFLAGS_TF 0x00100
-
-static inline int isRdbgException(Exception_context *ctx)
-{
- if (
- ctx->ctx->idtIndex != I386_EXCEPTION_DEBUG &&
- ctx->ctx->idtIndex != I386_EXCEPTION_BREAKPOINT &&
- ctx->ctx->idtIndex != I386_EXCEPTION_ENTER_RDBG
- ) return 0;
- else return 1;
-}
-static inline int getExcNum(Exception_context *ctx)
-{
- return ctx->ctx->idtIndex;
-}
-
-extern void connect_rdbg_exception();
-
-#endif
-
-
-