~ubuntu-dev/ubuntu/lucid/zabbix/lucid-201002110857

« back to all changes in this revision

Viewing changes to src/libs/zbxsysinfo/win32/kernel.c

  • Committer: Bazaar Package Importer
  • Author(s): Michael Ablassmeier
  • Date: 2007-07-02 09:06:51 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20070702090651-8l6fl3fjw9rh6l2u
Tags: 1:1.4.1-2
Add patch from SVN in order to fix Incorrect processing of character '%'
in user parameters and remote commands.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
** ZABBIX
 
3
** Copyright (C) 2000-2005 SIA Zabbix
 
4
**
 
5
** This program is free software; you can redistribute it and/or modify
 
6
** it under the terms of the GNU General Public License as published by
 
7
** the Free Software Foundation; either version 2 of the License, or
 
8
** (at your option) any later version.
 
9
**
 
10
** This program is distributed in the hope that it will be useful,
 
11
** but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
** GNU General Public License for more details.
 
14
**
 
15
** You should have received a copy of the GNU General Public License
 
16
** along with this program; if not, write to the Free Software
 
17
** Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
18
**/
 
19
 
 
20
#include "common.h"
 
21
 
 
22
#include "sysinfo.h"
 
23
 
 
24
int     KERNEL_MAXFILES(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result)
 
25
{
 
26
#ifdef TODO
 
27
#error Realize function KERNEL_MAXFILES!!!
 
28
#endif /* todo */
 
29
 
 
30
        return SYSINFO_RET_FAIL;
 
31
}
 
32
 
 
33
int     KERNEL_MAXPROC(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result)
 
34
{
 
35
#ifdef TODO
 
36
#error Realize function KERNEL_MAXFILES!!!
 
37
#endif /* todo */
 
38
 
 
39
        return SYSINFO_RET_FAIL;
 
40
}
 
41
 
 
42
int     OLD_KERNEL(const char *cmd, const char *param, unsigned flags, AGENT_RESULT *result)
 
43
{
 
44
        /* SKIP REALIZATEION */
 
45
        return SYSINFO_RET_FAIL;
 
46
}
 
47