Blame Examples/utils.h

Packit Service d45470
#ifndef librabbitmq_examples_utils_h
Packit Service d45470
#define librabbitmq_examples_utils_h
Packit Service d45470
Packit Service d45470
/*
Packit Service d45470
 * ***** BEGIN LICENSE BLOCK *****
Packit Service d45470
 * Version: MIT
Packit Service d45470
 *
Packit Service d45470
 * Portions created by Alan Antonuk are Copyright (c) 2012-2013
Packit Service d45470
 * Alan Antonuk. All Rights Reserved.
Packit Service d45470
 *
Packit Service d45470
 * Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
Packit Service d45470
 * All Rights Reserved.
Packit Service d45470
 *
Packit Service d45470
 * Portions created by Tony Garnock-Jones are Copyright (c) 2009-2010
Packit Service d45470
 * VMware, Inc. and Tony Garnock-Jones. All Rights Reserved.
Packit Service d45470
 *
Packit Service d45470
 * Permission is hereby granted, free of charge, to any person
Packit Service d45470
 * obtaining a copy of this software and associated documentation
Packit Service d45470
 * files (the "Software"), to deal in the Software without
Packit Service d45470
 * restriction, including without limitation the rights to use, copy,
Packit Service d45470
 * modify, merge, publish, distribute, sublicense, and/or sell copies
Packit Service d45470
 * of the Software, and to permit persons to whom the Software is
Packit Service d45470
 * furnished to do so, subject to the following conditions:
Packit Service d45470
 *
Packit Service d45470
 * The above copyright notice and this permission notice shall be
Packit Service d45470
 * included in all copies or substantial portions of the Software.
Packit Service d45470
 *
Packit Service d45470
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Packit Service d45470
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit Service d45470
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Packit Service d45470
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
Packit Service d45470
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
Packit Service d45470
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
Packit Service d45470
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit Service d45470
 * SOFTWARE.
Packit Service d45470
 * ***** END LICENSE BLOCK *****
Packit Service d45470
 */
Packit Service d45470
Packit Service d45470
void die(const char *fmt, ...);
Packit Service d45470
extern void die_on_error(int x, char const *context);
Packit Service d45470
extern void die_on_amqp_error(amqp_rpc_reply_t x, char const *context);
Packit Service d45470
Packit Service d45470
extern void amqp_dump(void const *buffer, size_t len);
Packit Service d45470
Packit Service d45470
extern uint64_t now_microseconds(void);
Packit Service d45470
extern void microsleep(int usec);
Packit Service d45470
Packit Service d45470
#endif