2016-11-30 11:33:44 -05:00
|
|
|
#ifndef PYHELPER_H
|
|
|
|
|
#define PYHELPER_H
|
|
|
|
|
|
2017-02-06 13:31:34 -05:00
|
|
|
double get_monotonic(void);
|
2016-11-30 11:33:44 -05:00
|
|
|
struct timespec fill_time(double time);
|
2016-11-30 12:04:28 -05:00
|
|
|
void set_python_logging_callback(void (*func)(const char *));
|
|
|
|
|
void errorf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
|
2016-11-30 11:33:44 -05:00
|
|
|
void report_errno(char *where, int rc);
|
|
|
|
|
char *dump_string(char *outbuf, int outbuf_size, char *inbuf, int inbuf_size);
|
2025-07-28 01:12:19 +02:00
|
|
|
int set_thread_name(char name[16]);
|
2016-11-30 11:33:44 -05:00
|
|
|
|
|
|
|
|
#endif // pyhelper.h
|