sc/memory-map/mmap_example.c
Ozan Tezcan 53d4a9158a
Fix compiler warnings (#95)
Fix compiler warnings
2022-08-20 18:56:21 +03:00

28 lines
437 B
C

#include "sc_mmap.h"
#include <assert.h>
#include <stdio.h>
int main(void)
{
int rc;
struct sc_mmap mmap;
rc = sc_mmap_init(&mmap, "x.txt", O_RDWR | O_CREAT | O_TRUNC,
PROT_READ | PROT_WRITE, MAP_SHARED, 0, 15000);
assert(rc == 0);
void *ptr = mmap.ptr;
size_t mapped_len = mmap.len;
printf("mapped len : %zu \n", mapped_len);
*(char *) ptr = 't';
sc_mmap_msync(&mmap, 0, 4096);
sc_mmap_term(&mmap);
return 0;
}