From: jzhou Date: Tue, 2 Mar 2010 22:52:14 +0000 (+0000) Subject: remove hard coded relative path for getting profiling data X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=a8a472e5c17b00a3567a345b7a0228a7aa4e086b;p=IRC.git remove hard coded relative path for getting profiling data --- diff --git a/Robust/src/Analysis/Scheduling/ScheduleAnalysis.java b/Robust/src/Analysis/Scheduling/ScheduleAnalysis.java index 0da216fe..f2cce70a 100644 --- a/Robust/src/Analysis/Scheduling/ScheduleAnalysis.java +++ b/Robust/src/Analysis/Scheduling/ScheduleAnalysis.java @@ -247,7 +247,7 @@ public class ScheduleAnalysis { // read in profile data and set //FileInputStream inStream = new FileInputStream("/scratch/profile.rst"); FileInputStream inStream = - new FileInputStream("/scratch/" + this.state.profilename); + new FileInputStream(/*"/scratch/" + */this.state.profilename); byte[] b = new byte[1024 * 100]; int length = inStream.read(b); if(length < 0) {