mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
b7ae41e6ca
If configure script is executed with stricter cflags "-Werrorr=implicit-function-declaration -Werror=implicit-int" then detection of few features will fail. Checking for C99 vsnprintf : not found Checking for HAVE_SHARED_MMAP : not found Checking for HAVE_MREMAP : not found lib/replace/test/shared_mmap.c:18:1: error: return type defaults to ‘int’ [-Werror=implicit-int] main() ^~~~ lib/replace/test/shared_mmap.c: In function ‘main’: lib/replace/test/shared_mmap.c:25:16: error: implicit declaration of function ‘exit’ [-Werror=implicit-function-declaration] if (fd == -1) exit(1); ^~~~ lib/replace/test/shared_mmap.c:25:16: warning: incompatible implicit declaration of built-in function ‘exit’ lib/replace/test/shared_mmap.c:25:16: note: include ‘<stdlib.h>’ or provide a declaration of ‘exit’ Signed-off-by: Lukas Slebodnik <lslebodn@redhat.com> Reviewed-by: Andreas Schneider <asn@samba.org> Reviewed-by: Ralph Boehme <slow@samba.org>
72 lines
1.2 KiB
C
72 lines
1.2 KiB
C
/* this tests whether we can use a shared writeable mmap on a file -
|
|
as needed for the mmap variant of FAST_SHARE_MODES */
|
|
|
|
#if defined(HAVE_UNISTD_H)
|
|
#include <unistd.h>
|
|
#endif
|
|
#ifdef HAVE_STDLIB_H
|
|
#include <stdlib.h>
|
|
#endif
|
|
#include <sys/mman.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
|
|
#define DATA "conftest.mmap"
|
|
|
|
#ifndef MAP_FILE
|
|
#define MAP_FILE 0
|
|
#endif
|
|
|
|
int main(void)
|
|
{
|
|
int *buf;
|
|
int i;
|
|
int fd = open(DATA,O_RDWR|O_CREAT|O_TRUNC,0666);
|
|
int count=7;
|
|
|
|
if (fd == -1) exit(1);
|
|
|
|
for (i=0;i<10000;i++) {
|
|
write(fd,&i,sizeof(i));
|
|
}
|
|
|
|
close(fd);
|
|
|
|
if (fork() == 0) {
|
|
fd = open(DATA,O_RDWR);
|
|
if (fd == -1) exit(1);
|
|
|
|
buf = (int *)mmap(NULL, 10000*sizeof(int),
|
|
(PROT_READ | PROT_WRITE),
|
|
MAP_FILE | MAP_SHARED,
|
|
fd, 0);
|
|
|
|
while (count-- && buf[9124] != 55732) sleep(1);
|
|
|
|
if (count <= 0) exit(1);
|
|
|
|
buf[1763] = 7268;
|
|
exit(0);
|
|
}
|
|
|
|
fd = open(DATA,O_RDWR);
|
|
if (fd == -1) exit(1);
|
|
|
|
buf = (int *)mmap(NULL, 10000*sizeof(int),
|
|
(PROT_READ | PROT_WRITE),
|
|
MAP_FILE | MAP_SHARED,
|
|
fd, 0);
|
|
|
|
if (buf == (int *)-1) exit(1);
|
|
|
|
buf[9124] = 55732;
|
|
|
|
while (count-- && buf[1763] != 7268) sleep(1);
|
|
|
|
unlink(DATA);
|
|
|
|
if (count > 0) exit(0);
|
|
exit(1);
|
|
}
|