aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java
diff options
context:
space:
mode:
authorGravatar Han-Wen Nienhuys <hanwen@google.com>2015-03-12 15:09:42 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-03-13 14:37:48 +0000
commit14c542c770b8b3d2a07467ad86e021501c710c5a (patch)
tree3dc8c514846c94d9f19ea38474b36275c2dd268a /src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java
parent5290d995ffe0c6e942ad514857e05533994cadcd (diff)
Use VFS_READLINK rather than VFS_LINK, to avoid confusion with the
link system call. -- MOS_MIGRATED_REVID=88441395
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java b/src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java
index 469e605bc2..c0eb26dad1 100644
--- a/src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java
+++ b/src/main/java/com/google/devtools/build/lib/profiler/chart/AggregatingChartCreator.java
@@ -56,7 +56,7 @@ public class AggregatingChartCreator implements ChartCreator {
/** The tasks in the 'VFS' category. */
private static Set<ProfilerTask> VFS_TASKS =
- EnumSet.of(ProfilerTask.VFS_STAT, ProfilerTask.VFS_DIR, ProfilerTask.VFS_LINK,
+ EnumSet.of(ProfilerTask.VFS_STAT, ProfilerTask.VFS_DIR, ProfilerTask.VFS_READLINK,
ProfilerTask.VFS_MD5, ProfilerTask.VFS_DELETE, ProfilerTask.VFS_OPEN,
ProfilerTask.VFS_READ, ProfilerTask.VFS_WRITE, ProfilerTask.VFS_GLOB,
ProfilerTask.VFS_XATTR);