utils.h 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef librabbitmq_examples_utils_h
  2. #define librabbitmq_examples_utils_h
  3. /*
  4. * ***** BEGIN LICENSE BLOCK *****
  5. * Version: MIT
  6. *
  7. * Portions created by Alan Antonuk are Copyright (c) 2012-2013
  8. * Alan Antonuk. All Rights Reserved.
  9. *
  10. * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
  11. * All Rights Reserved.
  12. *
  13. * Portions created by Tony Garnock-Jones are Copyright (c) 2009-2010
  14. * VMware, Inc. and Tony Garnock-Jones. All Rights Reserved.
  15. *
  16. * Permission is hereby granted, free of charge, to any person
  17. * obtaining a copy of this software and associated documentation
  18. * files (the "Software"), to deal in the Software without
  19. * restriction, including without limitation the rights to use, copy,
  20. * modify, merge, publish, distribute, sublicense, and/or sell copies
  21. * of the Software, and to permit persons to whom the Software is
  22. * furnished to do so, subject to the following conditions:
  23. *
  24. * The above copyright notice and this permission notice shall be
  25. * included in all copies or substantial portions of the Software.
  26. *
  27. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  28. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  29. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  30. * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
  31. * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
  32. * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  33. * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
  34. * SOFTWARE.
  35. * ***** END LICENSE BLOCK *****
  36. */
  37. void die(const char *fmt, ...);
  38. extern void die_on_error(int x, char const *context);
  39. extern void die_on_amqp_error(amqp_rpc_reply_t x, char const *context);
  40. extern void amqp_dump(void const *buffer, size_t len);
  41. extern uint64_t now_microseconds(void);
  42. extern void microsleep(int usec);
  43. #endif