diff options
author | June McEnroe <programble@gmail.com> | 2017-07-31 23:22:21 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-07-31 23:22:21 -0400 |
commit | 6d3ea7e072cca64edd652cf7a4973648f85c1cc5 (patch) | |
tree | 90cf03d469fec6b23da2bbfa94efb35902520d51 | |
parent | Use designated initializers for messages (diff) | |
download | torus-6d3ea7e072cca64edd652cf7a4973648f85c1cc5.tar.gz torus-6d3ea7e072cca64edd652cf7a4973648f85c1cc5.zip |
Don't dump tiles in core
Diffstat (limited to '')
-rwxr-xr-x | server.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server.c b/server.c index a32ada5..9724359 100755 --- a/server.c +++ b/server.c @@ -34,6 +34,11 @@ static void tilesMap(void) { tiles = mmap(NULL, TILES_SIZE, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); if (tiles == MAP_FAILED) err(EX_OSERR, "mmap"); + +#ifdef MADV_NOCORE + error = madvise(tiles, TILES_SIZE, MADV_NOCORE); + if (error) err(EX_OSERR, "madvise"); +#endif } static struct Tile *tileGet(uint32_t tileX, uint32_t tileY) { |