mirror of
https://github.com/ioacademy-jikim/debugging
synced 2025-06-08 08:26:14 +00:00
18 lines
401 B
C
18 lines
401 B
C
// Small test program to demonstrate Valgrind bug.
|
|
// https://bugs.kde.org/show_bug.cgi?id=191761
|
|
// Author: rohitrao@google.com
|
|
//
|
|
// Before the fix, it was printing 266. Now it prints 256.
|
|
|
|
#include <stdio.h>
|
|
#include <sys/resource.h>
|
|
|
|
int main(void)
|
|
{
|
|
struct rlimit rlp;
|
|
getrlimit(RLIMIT_NOFILE, &rlp);
|
|
fprintf(stderr, "RLIMIT_NOFILE is %lld\n", (long long)rlp.rlim_cur);
|
|
return 0;
|
|
}
|
|
|