diff options
author | June McEnroe <programble@gmail.com> | 2017-08-08 20:55:44 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2017-08-08 20:55:44 -0400 |
commit | b8c5910232d1428b686716be02b10b2c498cab89 (patch) | |
tree | c1e97a5f3ce7aa5fe25c5e0cc1b575038fb59c00 | |
parent | Completely retry if a send fails during a broadcast (diff) | |
download | torus-b8c5910232d1428b686716be02b10b2c498cab89.tar.gz torus-b8c5910232d1428b686716be02b10b2c498cab89.zip |
Remove MADV_NOSYNC
I don't think this has any benefit. It just takes longer to stop the server because it flushes all the pages then.
-rwxr-xr-x | server.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/server.c b/server.c index 2fcdff7..c3ae650 100755 --- a/server.c +++ b/server.c @@ -38,11 +38,6 @@ static void tilesMap(void) { error = madvise(tiles, TILES_SIZE, MADV_RANDOM); if (error) err(EX_OSERR, "madvise"); -#ifdef MADV_NOSYNC - error = madvise(tiles, TILES_SIZE, MADV_NOSYNC); - if (error) err(EX_OSERR, "madvise"); -#endif - #ifdef MADV_NOCORE error = madvise(tiles, TILES_SIZE, MADV_NOCORE); if (error) err(EX_OSERR, "madvise"); |