diff --git a/src/org/ntlab/trace/Trace.java b/src/org/ntlab/trace/Trace.java index f220323..11c5439 100644 --- a/src/org/ntlab/trace/Trace.java +++ b/src/org/ntlab/trace/Trace.java @@ -166,7 +166,8 @@ // threadNo = accessData[8].split(" ")[1]; if (threadNo != null) { thread = threads.get(threadNo); - if (thread != null) thread.fieldAccess(accessData[5], accessData[6], accessData[3], accessData[4], accessData[1], accessData[2]); + timeStamp++; // ���̃^�C���X�^���v(���s����ێ����邽��) + if (thread != null) thread.fieldAccess(accessData[5], accessData[6], accessData[3], accessData[4], accessData[1], accessData[2], 0, timeStamp); } } } else if (line.startsWith("set")) { @@ -177,7 +178,8 @@ // threadNo = updateData[6].split(" ")[1]; if (threadNo != null) { thread = threads.get(threadNo); - if (thread != null) thread.fieldUpdate(updateData[3], updateData[4], updateData[1], updateData[2]); + timeStamp++; // ���̃^�C���X�^���v(���s����ێ����邽��) + if (thread != null) thread.fieldUpdate(updateData[3], updateData[4], updateData[1], updateData[2], 0, timeStamp); } } }