I intend to perform opening for reading a single file from many threads using std::ifstream. My concern is if std::ifstream is thread-safe & lock-free?
More deta
All std libraries are thread safe but not "async" safe. So you can call the same functions from different threads but not on the same objects.