getpwnam_error.c:
* The memory hole can be fixed with two different approaches
1) Change /etc/nsswitch.conf: passwd: compat to passwd: files
2) LD_PRELOAD=/lib/libnss_compat.so.2 valgrind ./getpwnam_error
GLIBC loads libnss_compat on the fly and unloads it.
Thanks to telexicon for reporting this...
committer: Markus Bröker <mbroeker@largo.homelinux.org>
/**
* test/demos/set_limit.c
* Copyright (C) 2008 Markus Broeker
*/
#include <sys/time.h>
#include <sys/resource.h>
int set_limit (int megs)
{
struct rlimit rlim;
megs *= 1024 * 1024;
rlim.rlim_cur = megs;
rlim.rlim_max = 1.25 * megs;
if (megs > (4 * 1024 * 1024))
return setrlimit (RLIMIT_AS, &rlim);
return -1;
}