I know (almost) all methods in QFile are reentrant, but what about thread-safety?

- Can two threads access the hard disk at the same time, so in other words, is disk access serialized internally?
- Can two threads access the same file at the same time? I suppose this is not an issue if the first point is not an issue, since serialized hard disk access would mean there are no potential conflicts here.