X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fdaemon%2Fglobals.h;h=9ec72f0de1a770155682167e790926bd5fb39f6e;hb=24b87484c7fd2e0998682db6f77e54d8cdc459d4;hp=b0a8f3a1a5cd7c6dc233a5b4da8e30196610a9cf;hpb=6b649799dedd72b783e3c24b485fbf3eabd6039e;p=collectd.git diff --git a/src/daemon/globals.h b/src/daemon/globals.h index b0a8f3a1..9ec72f0d 100644 --- a/src/daemon/globals.h +++ b/src/daemon/globals.h @@ -1,14 +1,51 @@ +/** + * collectd - src/globals.h + * Copyright (C) 2017 Google LLC + * + * Permission is hereby granted, free of charge, to any person obtaining a + * copy of this software and associated documentation files (the "Software"), + * to deal in the Software without restriction, including without limitation + * the rights to use, copy, modify, merge, publish, distribute, sublicense, + * and/or sell copies of the Software, and to permit persons to whom the + * Software is furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + * DEALINGS IN THE SOFTWARE. + **/ + #ifndef GLOBALS_H #define GLOBALS_H #include +#ifndef DATA_MAX_NAME_LEN +#define DATA_MAX_NAME_LEN 128 +#endif + +#ifndef PRIsz +#ifdef WIN32 +#define PRIsz "Iu" +#else +#define PRIsz "zu" +#endif /* WIN32 */ +#endif /* !PRIsz */ + /* Type for time as used by "utils_time.h" */ typedef uint64_t cdtime_t; -extern char hostname_g[]; -extern const int hostname_g_size; -extern cdtime_t interval_g; -extern int pidfile_from_cli; -extern int timeout_g; +/* hostname_set updates hostname_g */ +void hostname_set(char const *hostname); + +extern char *hostname_g; +extern cdtime_t interval_g; +extern int pidfile_from_cli; +extern int timeout_g; #endif /* GLOBALS_H */