File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
compiler-rt/lib/scudo/standalone Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -580,7 +580,7 @@ class MapAllocatorCache {
580580 }
581581
582582 void releaseOlderThan (u64 Time) REQUIRES(Mutex) {
583- SCUDO_SCOPED_TRACE (GetSecondaryReleaseOlderThan ());
583+ SCUDO_SCOPED_TRACE (GetSecondaryReleaseOlderThanTraceName ());
584584
585585 if (!LRUEntries.size () || OldestTime == 0 || OldestTime > Time)
586586 return ;
Original file line number Diff line number Diff line change @@ -41,7 +41,9 @@ static inline const char *GetSecondaryReleaseToOSTraceName(scudo::ReleaseToOS) {
4141}
4242
4343// Create a trace name for the call to releaseOlderThan in the secondary.
44- static inline const char *GetSecondaryReleaseOlderThan () { return nullptr ; }
44+ static inline const char *GetSecondaryReleaseOlderThanTraceName () {
45+ return nullptr ;
46+ }
4547
4648#endif
4749
You can’t perform that action at this time.
0 commit comments