* Daniel Colascione: > This test program works fine. (Watch it work in strace.) This patch is > against git master. It's okay to document accidental features, right? > > int > main() > { > int shmfd = shm_open(".", O_TMPFILE | O_RDWR | O_EXCL, 0600); > ftruncate(shmfd, 1000); > mmap(NULL, 1000, PROT_READ | PROT_WRITE, MAP_SHARED, shmfd, 0); > > return 0; > } This looks more like a bug to me. I wouldn't count on it continuing to work. glibc already tightened the rules for the name once. Florian -- To unsubscribe from this list: send the line "unsubscribe linux-man" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html