gdb-stub.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  include/asm-s390/gdb-stub.h
  3.  *
  4.  *  S390 version
  5.  *    Copyright (C) 1999 IBM Deutschland Entwicklung GmbH, IBM Corporation
  6.  *    Author(s): Denis Joseph Barrow (djbarrow@de.ibm.com,barrow_dj@yahoo.com)
  7.  */
  8. #ifndef __S390_GDB_STUB__
  9. #define __S390_GDB_STUB__
  10. #include <linux/config.h>
  11. #if CONFIG_REMOTE_DEBUG
  12. #include <asm/ptrace.h>
  13. extern int    gdb_stub_initialised;
  14. extern void gdb_stub_handle_exception(struct gdb_pt_regs *regs,int sigval);
  15. struct net_device;
  16. extern struct net_device *gdb_dev;
  17. void gdb_do_timers(void);
  18. extern int putDebugChar(char c);    /* write a single character      */
  19. extern char getDebugChar(void);     /* read and return a single char */
  20. #endif
  21. #endif