Skip to content

Commit 52b2e64

Browse files
authored
Merge pull request #19 from jwlodek/fix-monitor-thread-name
Fix unique name for monitor thread
2 parents 34e5463 + a291158 commit 52b2e64

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kinetixApp/src/ADKinetix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ ADKinetix::ADKinetix(int deviceIndex, const char *portName)
683683
opts.joinable = 1;
684684

685685
this->monitorThreadId = epicsThreadCreateOpt(
686-
"acquisitionThread", (EPICSTHREADFUNC)monitorThreadC, this, &opts);
686+
"monitorThread", (EPICSTHREADFUNC)monitorThreadC, this, &opts);
687687
}
688688
}
689689
}

0 commit comments

Comments
 (0)