Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/zbxsysinfo/osx/diskspace.c')
-rw-r--r--src/libs/zbxsysinfo/osx/diskspace.c34
1 files changed, 17 insertions, 17 deletions
diff --git a/src/libs/zbxsysinfo/osx/diskspace.c b/src/libs/zbxsysinfo/osx/diskspace.c
index 350b0ca7c51..cbad5e1c6fe 100644
--- a/src/libs/zbxsysinfo/osx/diskspace.c
+++ b/src/libs/zbxsysinfo/osx/diskspace.c
@@ -101,7 +101,7 @@ static int get_fs_size_stat(const char *fs, zbx_uint64_t *total, zbx_uint64_t *f
#undef ZBX_BSIZE
}
-static int VFS_FS_USED(const char *fs, AGENT_RESULT *result)
+static int vfs_fs_used(const char *fs, AGENT_RESULT *result)
{
zbx_uint64_t value;
char *error;
@@ -117,7 +117,7 @@ static int VFS_FS_USED(const char *fs, AGENT_RESULT *result)
return SYSINFO_RET_OK;
}
-static int VFS_FS_FREE(const char *fs, AGENT_RESULT *result)
+static int vfs_fs_free(const char *fs, AGENT_RESULT *result)
{
zbx_uint64_t value;
char *error;
@@ -133,7 +133,7 @@ static int VFS_FS_FREE(const char *fs, AGENT_RESULT *result)
return SYSINFO_RET_OK;
}
-static int VFS_FS_TOTAL(const char *fs, AGENT_RESULT *result)
+static int vfs_fs_total(const char *fs, AGENT_RESULT *result)
{
zbx_uint64_t value;
char *error;
@@ -149,7 +149,7 @@ static int VFS_FS_TOTAL(const char *fs, AGENT_RESULT *result)
return SYSINFO_RET_OK;
}
-static int VFS_FS_PFREE(const char *fs, AGENT_RESULT *result)
+static int vfs_fs_pfree(const char *fs, AGENT_RESULT *result)
{
double value;
char *error;
@@ -165,7 +165,7 @@ static int VFS_FS_PFREE(const char *fs, AGENT_RESULT *result)
return SYSINFO_RET_OK;
}
-static int VFS_FS_PUSED(const char *fs, AGENT_RESULT *result)
+static int vfs_fs_pused(const char *fs, AGENT_RESULT *result)
{
double value;
char *error;
@@ -181,7 +181,7 @@ static int VFS_FS_PUSED(const char *fs, AGENT_RESULT *result)
return SYSINFO_RET_OK;
}
-static int vfs_fs_size(AGENT_REQUEST *request, AGENT_RESULT *result)
+static int vfs_fs_size_local(AGENT_REQUEST *request, AGENT_RESULT *result)
{
char *fsname, *mode;
@@ -201,27 +201,27 @@ static int vfs_fs_size(AGENT_REQUEST *request, AGENT_RESULT *result)
}
if (NULL == mode || '\0' == *mode || 0 == strcmp(mode, "total")) /* default parameter */
- return VFS_FS_TOTAL(fsname, result);
+ return vfs_fs_total(fsname, result);
if (0 == strcmp(mode, "free"))
- return VFS_FS_FREE(fsname, result);
+ return vfs_fs_free(fsname, result);
if (0 == strcmp(mode, "pfree"))
- return VFS_FS_PFREE(fsname, result);
+ return vfs_fs_pfree(fsname, result);
if (0 == strcmp(mode, "used"))
- return VFS_FS_USED(fsname, result);
+ return vfs_fs_used(fsname, result);
if (0 == strcmp(mode, "pused"))
- return VFS_FS_PUSED(fsname, result);
+ return vfs_fs_pused(fsname, result);
SET_MSG_RESULT(result, zbx_strdup(NULL, "Invalid second parameter."));
return SYSINFO_RET_FAIL;
}
-int VFS_FS_SIZE(AGENT_REQUEST *request, AGENT_RESULT *result)
+int vfs_fs_size(AGENT_REQUEST *request, AGENT_RESULT *result)
{
- return zbx_execute_threaded_metric(vfs_fs_size, request, result);
+ return zbx_execute_threaded_metric(vfs_fs_size_local, request, result);
}
-int VFS_FS_DISCOVERY(AGENT_REQUEST *request, AGENT_RESULT *result)
+int vfs_fs_discovery(AGENT_REQUEST *request, AGENT_RESULT *result)
{
int i, rc;
struct statfs *mntbuf;
@@ -259,7 +259,7 @@ int VFS_FS_DISCOVERY(AGENT_REQUEST *request, AGENT_RESULT *result)
return SYSINFO_RET_OK;
}
-static int vfs_fs_get(AGENT_REQUEST *request, AGENT_RESULT *result)
+static int vfs_fs_get_local(AGENT_REQUEST *request, AGENT_RESULT *result)
{
int i, rc;
struct statfs *mntbuf;
@@ -365,7 +365,7 @@ out:
return ret;
}
-int VFS_FS_GET(AGENT_REQUEST *request, AGENT_RESULT *result)
+int vfs_fs_get(AGENT_REQUEST *request, AGENT_RESULT *result)
{
- return zbx_execute_threaded_metric(vfs_fs_get, request, result);
+ return zbx_execute_threaded_metric(vfs_fs_get_local, request, result);
}