summaryrefslogblamecommitdiffstats
path: root/c/src/librdbg/include/rdbg/i386/rdbg_f.h
blob: 14335c4bcb91e3a90ca3f2f699abea336fb69082 (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();
extern void disconnect_rdbg_exception();

#endif