summaryrefslogblamecommitdiffstats
path: root/c/src/librdbg/include/rdbg/i386/rdbg_f.h
blob: c75cecc7bc108c0191b38adf58742b4339a63462 (plain) (tree)
1
2
3
4
5
6
7
8
9
10







                                                                           

       










                                                                           














                                                         




      
/*
 **************************************************************************
 *
 * 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