mirror of
https://github.com/wolfpld/tracy.git
synced 2026-08-05 21:09:12 +00:00
Use cached source files.
This commit is contained in:
@@ -4,8 +4,9 @@
|
||||
namespace tracy
|
||||
{
|
||||
|
||||
bool SourceFileValid( const char* fn, uint64_t olderThan, const View& view )
|
||||
bool SourceFileValid( const char* fn, uint64_t olderThan, const View& view, const Worker& worker )
|
||||
{
|
||||
if( worker.GetSourceFileFromCache( fn ).data != nullptr ) return true;
|
||||
struct stat buf;
|
||||
if( stat( view.SourceSubstitution( fn ), &buf ) == 0 && ( buf.st_mode & S_IFREG ) != 0 )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user