Skip to content

Commit 3c8f5a0

Browse files
committed
fix race condition in single stepping
1 parent b3ef606 commit 3c8f5a0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/emc/task/emctask.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ int emcTaskUpdate(EMC_TASK_STAT * stat)
718718
emcStatus->motion.traj.tag);
719719
if (res_state != INTERP_ERROR) {
720720
rtapi_strxcpy(stat->file, emcStatus->motion.traj.tag.filename);
721-
stat->currentLine = emcStatus->motion.traj.tag.fields[0];
721+
// stat->currentLine = emcStatus->motion.traj.tag.fields[0];
722722
}
723723
}
724724
// If we get an error from trying to unpack from the motion state, always

0 commit comments

Comments
 (0)