Skip to content

Commit 0b702c5

Browse files
committed
use distinct size
so that it is e.g. easily visible in /dev/shm/ listing
1 parent 2058188 commit 0b702c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

shm/shm.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ main(int argc, char *argv[])
2525
if (fd == -1)
2626
err(1, "shm_open");
2727

28-
size_t size = 1024;
28+
size_t size = 4444;
2929
assert(ftruncate(fd, size) == 0);
3030

3131
// There would be no write-back with MAP_PRIVATE.

0 commit comments

Comments
 (0)