2006-03-22 16:40:03 +00:00
|
|
|
/*
|
2014-01-26 20:46:55 +00:00
|
|
|
* Copyright (c) 2005-2007 Proofpoint, Inc. and its suppliers.
|
2006-03-22 16:40:03 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* By using this file, you agree to the terms and conditions set
|
|
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
|
|
* the sendmail distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sm/gen.h>
|
2014-05-22 03:45:17 +00:00
|
|
|
SM_IDSTR(id, "@(#)$Id: t-memstat.c,v 1.11 2013-11-22 20:51:43 ca Exp $")
|
2007-04-09 01:38:51 +00:00
|
|
|
|
|
|
|
#include <sm/misc.h>
|
2006-03-22 16:40:03 +00:00
|
|
|
|
|
|
|
/*
|
2006-06-14 16:23:02 +00:00
|
|
|
** Simple test program for memstat
|
2006-03-22 16:40:03 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <strings.h>
|
2006-06-14 16:23:02 +00:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
extern char *optarg;
|
|
|
|
extern int optind;
|
2006-03-22 16:40:03 +00:00
|
|
|
|
2007-04-09 01:38:51 +00:00
|
|
|
void
|
|
|
|
usage(prg)
|
|
|
|
char *prg;
|
|
|
|
{
|
|
|
|
fprintf(stderr, "usage: %s [options]\n", prg);
|
|
|
|
fprintf(stderr, "options:\n");
|
|
|
|
fprintf(stderr, "-l n loop n times\n");
|
|
|
|
fprintf(stderr, "-m n allocate n bytes per iteration\n");
|
|
|
|
fprintf(stderr, "-r name use name as resource to query\n");
|
|
|
|
fprintf(stderr, "-s n sleep n seconds per iteration\n");
|
|
|
|
}
|
|
|
|
|
2006-03-22 16:40:03 +00:00
|
|
|
int
|
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
|
|
|
char **argv;
|
|
|
|
{
|
|
|
|
int r, r2, i, l, slp, sz;
|
|
|
|
long v;
|
|
|
|
char *resource;
|
|
|
|
|
|
|
|
l = 1;
|
|
|
|
sz = slp = 0;
|
|
|
|
resource = NULL;
|
|
|
|
while ((r = getopt(argc, argv, "l:m:r:s:")) != -1)
|
|
|
|
{
|
|
|
|
switch ((char) r)
|
|
|
|
{
|
|
|
|
case 'l':
|
|
|
|
l = strtol(optarg, NULL, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
sz = strtol(optarg, NULL, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'r':
|
|
|
|
resource = strdup(optarg);
|
2014-01-26 20:46:55 +00:00
|
|
|
if (resource == NULL)
|
|
|
|
{
|
|
|
|
fprintf(stderr, "strdup(%s) failed\n",
|
|
|
|
optarg);
|
|
|
|
exit(1);
|
|
|
|
}
|
2006-03-22 16:40:03 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case 's':
|
|
|
|
slp = strtol(optarg, NULL, 0);
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2007-04-09 01:38:51 +00:00
|
|
|
usage(argv[0]);
|
|
|
|
exit(1);
|
2006-03-22 16:40:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
r = sm_memstat_open();
|
|
|
|
r2 = -1;
|
|
|
|
for (i = 0; i < l; i++)
|
|
|
|
{
|
|
|
|
char *mem;
|
|
|
|
|
|
|
|
r2 = sm_memstat_get(resource, &v);
|
|
|
|
if (slp > 0 && i + 1 < l && 0 == r)
|
|
|
|
{
|
|
|
|
printf("open=%d, memstat=%d, %s=%ld\n", r, r2,
|
|
|
|
resource != NULL ? resource : "default-value",
|
|
|
|
v);
|
|
|
|
sleep(slp);
|
|
|
|
if (sz > 0)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
** Just allocate some memory to test the
|
|
|
|
** values that are returned.
|
|
|
|
** Note: this is a memory leak, but that
|
|
|
|
** doesn't matter here.
|
|
|
|
*/
|
|
|
|
|
|
|
|
mem = malloc(sz);
|
|
|
|
if (NULL == mem)
|
|
|
|
printf("malloc(%d) failed\n", sz);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf("open=%d, memstat=%d, %s=%ld\n", r, r2,
|
|
|
|
resource != NULL ? resource : "default-value", v);
|
|
|
|
r = sm_memstat_close();
|
|
|
|
return r;
|
|
|
|
}
|