snull.h
上传用户:wudi5211
上传日期:2010-01-21
资源大小:607k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

C/C++

  1. /*
  2.  * snull.h -- definitions for the network module
  3.  *
  4.  *********/
  5. /* version dependencies have been confined to a separate file */
  6. #include "sysdep-2.1.h"
  7. /*
  8.  * Macros to help debugging
  9.  */
  10. #undef PDEBUG             /* undef it, just in case */
  11. #ifdef SNULL_DEBUG
  12. #  ifdef __KERNEL__
  13.      /* This one if debugging is on, and kernel space */
  14. #    define PDEBUG(fmt, args...) printk( KERN_DEBUG "snull: " fmt, ## args)
  15. #  else
  16.      /* This one for user space */
  17. #    define PDEBUG(fmt, args...) fprintf(stderr, fmt, ## args)
  18. #  endif
  19. #else
  20. #  define PDEBUG(fmt, args...) /* not debugging: nothing */
  21. #endif
  22. #undef PDEBUGG
  23. #define PDEBUGG(fmt, args...) /* nothing: it's a placeholder */
  24. /* These are the flags in the statusword */
  25. #define SNULL_RX_INTR 0x0001
  26. #define SNULL_TX_INTR 0x0002
  27. extern struct device snull_devs[];