>>> +static int create_new_lock(void) >>> +{ >>> + int fd; >>> + pthread_mutex_t cmutex = PTHREAD_MUTEX_INITIALIZER; >>> + pthread_mutexattr_t attr; >>> + int ret; >>> + >>> + pthread_mutexattr_init(&attr); >>> + pthread_mutexattr_setrobust_np(&attr, PTHREAD_MUTEX_ROBUST_NP); >>> + pthread_mutex_init(&cmutex, &attr); >>> + >>> + fd = open(lock_name, O_RDWR | O_CREAT | O_EXCL, S_IRUSR | S_IWUSR | >>> + S_IRGRP | S_IWGRP); >>> + if (fd < 0) >>> + return fd; >>> + >>> + ret = write(fd, &cmutex, sizeof(cmutex)); >>I think its undefined behavior if you copy a struct pthread_mutex. You >>should use mmap here too. > Why should be this undefined? Is there something special about this > struct? And why should this behave different with mmap() ? If you would use mmap, you would initialize the mutex inside the mmaped area, i.e. directly in the file. To the copying: Short answer: http://www.lambdacs.com/cpt/FAQ.html#Q15 Slightly longer: pthread_mutex_t m1, m2; pthread_mutex_init(&m1, NULL); pthread_mutex_lock(&m1); m2 = m1; pthread_mutex_unlock(&m2); How can you be sure, that you have unlocked m1 here? Yes, you throw away the cmutex after returning from the function and the copy inside the file is the only one left. I still think such code should not be in a documentation. Bert > > Sebastian > -- 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