From 261f99bdac9a995f8b2740b7ae52c8ad81001132 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 2 Aug 2007 15:00:07 +0000 Subject: 2007-08-02 Joel Sherrill * configure.ac, wrapup/Makefile.am: Remove RDBG. * aclocal/check-rdbg.m4, aclocal/enable-rdbg.m4, librdbg/.cvsignore, librdbg/Makefile.am, librdbg/preinstall.am, librdbg/include/rdbg/rdbg.h, librdbg/include/rdbg/servrpc.h, librdbg/include/rdbg/i386/rdbg_f.h, librdbg/include/rdbg/i386/reg.h, librdbg/include/rdbg/m68k/rdbg_f.h, librdbg/include/rdbg/m68k/reg.h, librdbg/include/rdbg/powerpc/rdbg_f.h, librdbg/include/rdbg/powerpc/reg.h, librdbg/src/_servtgt.c, librdbg/src/awk.svc, librdbg/src/excep.c, librdbg/src/ptrace.c, librdbg/src/rdbg.c, librdbg/src/remdeb.x, librdbg/src/servbkpt.c, librdbg/src/servcon.c, librdbg/src/servrpc.c, librdbg/src/servtgt.c, librdbg/src/servtsp.c, librdbg/src/servutil.c, librdbg/src/i386/excep_f.c, librdbg/src/i386/rdbg_cpu_asm.S, librdbg/src/i386/rdbg_f.c, librdbg/src/i386/any/remdeb.h, librdbg/src/i386/any/remdeb_f.x, librdbg/src/i386/any/remdeb_svc.c, librdbg/src/i386/any/remdeb_xdr.c, librdbg/src/m68k/excep_f.c, librdbg/src/m68k/rdbg_cpu_asm.S, librdbg/src/m68k/rdbg_f.c, librdbg/src/m68k/any/remdeb.h, librdbg/src/m68k/any/remdeb_f.x, librdbg/src/m68k/any/remdeb_svc.c, librdbg/src/m68k/any/remdeb_xdr.c, librdbg/src/powerpc/excep_f.c, librdbg/src/powerpc/rdbg_cpu_asm.S, librdbg/src/powerpc/rdbg_f.c, librdbg/src/powerpc/new_exception_processing/remdeb.h, librdbg/src/powerpc/new_exception_processing/remdeb_f.x, librdbg/src/powerpc/new_exception_processing/remdeb_svc.c, librdbg/src/powerpc/new_exception_processing/remdeb_xdr.c: Removed. --- c/src/librdbg/include/rdbg/rdbg.h | 92 --------------------------------------- 1 file changed, 92 deletions(-) delete mode 100644 c/src/librdbg/include/rdbg/rdbg.h (limited to 'c/src/librdbg/include/rdbg/rdbg.h') diff --git a/c/src/librdbg/include/rdbg/rdbg.h b/c/src/librdbg/include/rdbg/rdbg.h deleted file mode 100644 index edd05cf556..0000000000 --- a/c/src/librdbg/include/rdbg/rdbg.h +++ /dev/null @@ -1,92 +0,0 @@ -/* - ************************************************************************** - * - * Component = RDBG - * - * Synopsis = rdbg.h - * - * $Id$ - * - ************************************************************************** - */ - -#ifndef RDBG_H -#define RDBG_H - -#include -#include -#include -#include /* For malloc() and free() prototypes */ -#include -#include - -#define Malloc(size) malloc (size) -#define Free(block) free (block) -#define Realloc(block,size) realloc (block, size) -#define StrDup(str) strdup(str) - -#define LIST_PID 16 /* dynamic list of processes/tasks */ -#define LIST_PID_DEB 17 /* list of processes under debug now */ -#define LIST_PID_THREAD 18 /* list of threads for specific process */ -#define LIST_CONN 19 /* dynamic list of connections */ - - /* RTEMS internals */ -extern void remotedeb_2 (struct svc_req* rqstp, SVCXPRT* transp); -extern void setErrno (int error); -extern int getErrno (); -extern int ptrace (int request, int pid, char* addr, - int data, char* addr2); - -extern int TSP_RETRIES; -extern volatile int ExitForSingleStep; -extern volatile int justSaveContext; -extern volatile Objects_Id currentTargetThread; -extern volatile int CannotRestart; -extern volatile int TotalReboot; - - /* Missing RPC prototypes */ -SVCXPRT* svcudp_create (int fd); -void svc_processrequest (SVCXPRT* xprt, - u_long prog, u_long vers, - void (*dispatch)()); -int svcudp_enablecache (SVCXPRT *transp, u_long size); - -typedef struct Exception_context_struct { - struct Exception_context_struct *next; - struct Exception_context_struct *previous; - Objects_Id id; - Objects_Id semaphoreId; - CPU_Exception_frame *ctx; -} Exception_context; - -struct xdr_regs; - -extern int PushExceptCtx (Objects_Id Id, - Objects_Id semId, - CPU_Exception_frame *ctx); -extern int PopExceptCtx (Objects_Id Id); -extern Exception_context *GetExceptCtx (Objects_Id Id); -extern int Single_Step (CPU_Exception_frame* ctx); -extern int CheckForSingleStep (CPU_Exception_frame* ctx); -extern void BreakPointExcHdl (CPU_Exception_frame *ctx); -extern void CtxToRegs (const CPU_Exception_frame*,struct xdr_regs*); -extern void RegsToCtx (const struct xdr_regs*,CPU_Exception_frame*); - -extern void enterRdbg (); -extern void get_ctx_thread (Thread_Control *thread, - CPU_Exception_frame* ctx); -extern void set_ctx_thread (Thread_Control *thread, - CPU_Exception_frame* ctx); -extern int PushSavedExceptCtx ( Objects_Id Id, - CPU_Exception_frame *ctx ); -extern int ExcepToSig (Exception_context *ctx); - -extern rtems_id serializeSemId; -extern rtems_id wakeupEventSemId; -extern volatile unsigned int NbSerializedCtx; - -void copyback_data_cache_and_invalidate_instr_cache(unsigned char* addr, int size); - -#include - -#endif /* !RDBG_H */ -- cgit v1.2.3