Daniel Micay
Daniel Micay
When did you install GrapheneOS? Did you restore from a backup? Does it have internet access?
@SkewedZeppelin It returns `size_t` so it can't be negative. When it doesn't know the answer, it returns SIZE_MAX. Are you treating it as signed somewhere?
@SkewedZeppelin It's a `size_t`, it can't be negative. `SIZE_MAX` is the maximum `size_t` value. You must be printing it as a signed integer where it would be -1.
@SkewedZeppelin It's not particularly important but you should use `%zu` for `size_t`.
It matters on Windows where `long` is 32-bit on 64-bit but could at least theoretically be the case elsewhere.
@SkewedZeppelin That wouldn't be safe since it's not known what they're doing with it. They could be intentionally only copying to part of it. It can be a copy to...
@SkewedZeppelin It shouldn't matter since it's done dynamically. Can you give an example?
Non-light mainly means using write-after-free checks and the slab quarantine, both of which are expensive. Slab quarantine uses a fair bit of memory too. We'd like to make the slab...
That would defeat part of what auto-reboot accomplishes.
Google Messages can be used on GrapheneOS via sandboxed Google Play. However, the app assumes Play services has access it doesn't have available with sandboxed Google Play. Instead of accessing...