macros.h
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #ifndef MACROS_H
  14. #define MACROS_H
  15. #include <ndb_global.h>
  16. #include <NdbOut.hpp>
  17. #define ERROR(x) {ndbout_c((x));}
  18. #define ERROR1(x,y) {ndbout_c((x), (y));}
  19. #define ERROR2(x,y,z) {ndbout_c((x), (y), (z));}
  20. #define ERROR3(x,y,z,u) {ndbout_c((x), (y), (z), (u));}
  21. #define ERROR4(x,y,z,u,w) {ndbout_c((x), (y), (z), (u), (w));}
  22. #define INIT_RANDOM(x) srand48((x))
  23. #define UI_RANDOM(x)   ((unsigned int)(lrand48()%(x)))
  24. #define ASSERT(cond, message) 
  25.   { if(!(cond)) { ERROR(message); exit(-1); }}
  26. #ifdef DEBUG_ON
  27. #define DEBUG(x) {ndbout_c((x));}
  28. #define DEBUG1(x,y) {ndbout_c((x), (y));}
  29. #define DEBUG2(x,y,z) {ndbout_c((x), (y), (z));}
  30. #define DEBUG3(x,y,z,u) {ndbout_c((x), (y), (z), (u));}
  31. #define DEBUG4(x,y,z,u,w) {ndbout_c((x), (y), (z), (u), (w));}
  32. #define DEBUG5(x,y,z,u,w, v) {ndbout_c((x), (y), (z), (u), (w), (v));}
  33. #else
  34. #define DEBUG(x)
  35. #define DEBUG1(x,y)
  36. #define DEBUG2(x,y,z)
  37. #define DEBUG3(x,y,z,u)
  38. #define DEBUG4(x,y,z,u,w)
  39. #define DEBUG5(x,y,z,u,w, v)
  40. #endif
  41. #endif