Hi Everyone, I am trying work with inotify on linu...
# kotlin-native
h
Hi Everyone, I am trying work with inotify on linux ( https://man7.org/linux/man-pages/man7/inotify.7.html ) it appears that Kotlin Native (1.5.10) C interop does support the inotify header, but  the helper class mapping
inotify_event
 struct does not have any of it’s members. Has anyone encountered this issue before ?
2
m
I'm guessing since it is a struct that is read from a file descriptor, you can read its members instead... But curious if there's a better answer or underlying reason why the class doesn't have its members
m
n
Does the same problem persist if Kotlin 1.5.30 is used?
m
Yes, AFAIK it is LLVM problem, and LLVM will be updated only in 1.6
h
Thanks for responses guys !