X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=src%2Fcommon.h;h=6cf866773fbc8f88283e7887dee989fda7c0d17a;hb=ec6fec62b15992b22774233c6a915e46673b25af;hp=f6a8e19a68843b71acec79896d5592dc41e244ad;hpb=569a23ffadffa658bd7af8c58be6f36e4e8a6854;p=collectd.git diff --git a/src/common.h b/src/common.h index f6a8e19a..6cf86677 100644 --- a/src/common.h +++ b/src/common.h @@ -43,7 +43,8 @@ void *smalloc(size_t size); * * DESCRIPTION * Reads exactly `n' bytes or failes. Syntax and other behavior is analogous - * to `read(2)'. + * to `read(2)'. If EOF is received the file descriptor is closed and an + * error is returned. * * PARAMETERS * `fd' File descriptor to write to. @@ -144,12 +145,14 @@ int escape_slashes (char *buf, int buf_len); /* FIXME: `timeval_sub_timespec' needs a description */ int timeval_sub_timespec (struct timeval *tv0, struct timeval *tv1, struct timespec *ret); -int rrd_update_file (char *host, char *file, char *values, - char **ds_def, int ds_num); +int check_create_dir (const char *file_orig); #ifdef HAVE_LIBKSTAT int get_kstat (kstat_t **ksp_ptr, char *module, int instance, char *name); long long get_kstat_value (kstat_t *ksp, char *name); #endif +unsigned long long ntohll (unsigned long long n); +unsigned long long htonll (unsigned long long n); + #endif /* COMMON_H */