diff options
| author | 2011-10-13 14:58:47 -0700 | |
|---|---|---|
| committer | 2011-10-14 00:24:28 -0700 | |
| commit | b7bbba49d88eae58223d9878da4069bf6d7140bf (patch) | |
| tree | 00d1a0758d762903e648bb550434320822228c46 /src/utils.h | |
| parent | 30646836b4a1c6e5e80ddaea246cf9669eaa0628 (diff) | |
Add oatopt drop in replacement for dexopt
Change-Id: I094375230af2d9a88e30245b390cac71be7b50f4
Diffstat (limited to 'src/utils.h')
| -rw-r--r-- | src/utils.h | 5 |
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_ |