Chinaunix首页 | 论坛 | 博客
  • 博客访问: 198346
  • 博文数量: 56
  • 博客积分: 125
  • 博客等级: 入伍新兵
  • 技术积分: 427
  • 用 户 组: 普通用户
  • 注册时间: 2012-03-21 20:45
文章分类

全部博文(56)

文章存档

2018年(9)

2017年(10)

2016年(33)

2012年(4)

我的朋友

分类: LINUX

2017-04-26 09:45:50



点击(此处)折叠或打开

  1. #define DRV_DEBUG 1
  2. #define DRV_DEBUG_DEBUG 0x0001
  3. #define DRV_DEBUG_ERR 0x0002
  4. #define DRV_DEBUG_ALL 0xFFFF

  5. #if DRV_DEBUG
  6.     static unsigned int drv_flags = DRV_DEBUG_DEBUG|DRV_DEBUG_ERR;
  7.     #define DRV_PRINT(flag, fmt, ...) \
  8.                 do{\
  9.                     if(drv_flags & flag){\
  10.                     printf("[%24s : %4d] -- "fmt, __FUNCTION__, __LINE__, ##__VA_ARGS__);}\
  11.                 }while(0)
  12. #else
  13.         #define DRV_PRINT(fmt, ...)
  14. #endif

阅读(2839) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~