Dmitry V. Levin
1df0986c75
* tests/munlockall.c (main): Do not assume that munlockall syscall always succeeds.
14 lines
181 B
C
14 lines
181 B
C
#include "tests.h"
|
|
|
|
#include <stdio.h>
|
|
#include <sys/mman.h>
|
|
|
|
int
|
|
main(void)
|
|
{
|
|
printf("munlockall() = %s\n", sprintrc(munlockall()));
|
|
|
|
puts("+++ exited with 0 +++");
|
|
return 0;
|
|
}
|