summaryrefslogtreecommitdiff
path: root/src/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils.h')
-rw-r--r--src/utils.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/utils.h b/src/utils.h
index 7778918bc7..35b350be4e 100644
--- a/src/utils.h
+++ b/src/utils.h
@@ -212,9 +212,12 @@ pid_t GetTid();
// implementation-defined limit.
void SetThreadName(const char* name);
-// Returns the art-cache location or dies trying
+// Returns the art-cache location, or dies trying.
std::string GetArtCacheOrDie();
+// Returns the art-cache location for an OatFile, or dies trying.
+std::string GetArtCacheOatFilenameOrDie(const std::string& location);
+
} // namespace art
#endif // ART_SRC_UTILS_H_