User Details
User Details
- User Since
- Jul 17 2019, 10:09 PM (279 w, 13 h)
- Availability
- Available
Jun 30 2024
Jun 30 2024
qyliss added a comment to D600: posix: don't use LFS64 types in struct linux_dirent64.
Can this be accepted? Since GPGME is doing a direct syscall, rather than going through the libc wrapper, there's no need for it to use libc-specific types. It makes more sense (and is more portable) to use the sized types equivalent to the definition that the kernel uses.
May 10 2024
May 10 2024
qyliss added a comment to D600: posix: don't use LFS64 types in struct linux_dirent64.
Ah, I see what's up with the man page. It's documenting the Glibc getdents64() wrapper interface, so that's why it uses the Glibc types. But gpgme isn't using that wrapper, it's doing the syscall directly, so it should use the types the kernel uses, which as you've noticed are just generic unsigned and signed 64-bit integers, matching what my patch does.
May 8 2024
May 8 2024
qyliss added a comment to D600: posix: don't use LFS64 types in struct linux_dirent64.
qyliss added a comment to D600: posix: don't use LFS64 types in struct linux_dirent64.
May 6 2024
May 6 2024
qyliss added a comment to D600: posix: don't use LFS64 types in struct linux_dirent64.
off64_t mat not the same as int64_t
qyliss added a comment to D600: posix: don't use LFS64 types in struct linux_dirent64.
May 3 2024
May 3 2024
qyliss requested review of D600: posix: don't use LFS64 types in struct linux_dirent64.
Feb 18 2022
Feb 18 2022
qyliss requested review of D549: qt: make the pin entry dialog float again.