调试之断言宏

匿名 (未验证) 提交于 2019-12-03 00:39:02

LWIP_ERROR("tcp_connect: can only connect from state CLOSED", pcb->state == CLOSED, return ERR_ISCONN);

#ifndef LWIP_PLATFORM_ASSERT
  #define LWIP_PLATFORM_ASSERT(x) do { if(!(x)) while(1); } while(0)
#endif

#ifndef LWIP_NOASSERT
#define LWIP_ASSERT(message, assertion) do { if(!(assertion)) \


#define LWIP_ERROR(message, expression, handler) do { if (!(expression)) { \

  LWIP_PLATFORM_ASSERT(message);\

  handler;}} while(0)
#endif /* LWIP_ERROR */

原文:https://www.cnblogs.com/jieruishu/p/9246749.html

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!