Skip to content

Commit

Permalink
capitalized
Browse files Browse the repository at this point in the history
  • Loading branch information
YuanhuanO committed Oct 7, 2024
1 parent 5e6f9e4 commit c42d0e1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions timing/rob/rob.go
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ func (b *ReorderBuffer) topDown(now sim.VTimeInSec) bool {
GlobalMilestoneManager.AddMilestone(
b.getTaskID(),
"Hardware Occupancy",
"buffer full",
"Buffer full",
"topDown",
now,
)
Expand Down Expand Up @@ -254,8 +254,8 @@ func (b *ReorderBuffer) parseBottom(now sim.VTimeInSec) bool {
if item == nil {
GlobalMilestoneManager.AddMilestone(
b.getTaskID(),
"dependency",
"waiting for bottom response",
"Dependency",
"Waiting for bottom response",
"parseBottom",
now,
)
Expand Down Expand Up @@ -284,8 +284,8 @@ func (b *ReorderBuffer) bottomUp(now sim.VTimeInSec) bool {
if elem == nil {
GlobalMilestoneManager.AddMilestone(
b.getTaskID(),
"dependency",
"no transactions to process",
"Dependency",
"No transactions to process",
"bottomUp",
now,
)
Expand All @@ -296,8 +296,8 @@ func (b *ReorderBuffer) bottomUp(now sim.VTimeInSec) bool {
if trans.rspFromBottom == nil {
GlobalMilestoneManager.AddMilestone(
b.getTaskID(),
"dependency",
"waiting for bottom response",
"Dependency",
"Waiting for bottom response",
"bottomUp",
now,
)
Expand Down

0 comments on commit c42d0e1

Please sign in to comment.