murano-agent/contrib/c-demo-agent/utils.h
Ruslan Kamaldinov 79c7da668a Extract main python client to the top
C and Windows clients were moved to directory 'contrib'.

Change-Id: I2a31a965d38f4f750abf9c8dfa90b249dbe1aeba
2014-05-29 20:02:50 +04:00

14 lines
342 B
C

#ifndef agent_utils_h
#define agent_utils_h
void die(const char *fmt, ...);
extern void die_on_error(int x, char const *context);
extern void die_on_amqp_error(amqp_rpc_reply_t x, char const *context);
extern void amqp_dump(void const *buffer, size_t len);
extern uint64_t now_microseconds(void);
extern void microsleep(int usec);
#endif