Make casr print the full channel name, not just the record name.

This commit is contained in:
Andrew Johnson
2012-04-27 13:21:43 -04:00
committed by Michael Davidsaver
parent 1d274aba0d
commit 07b3b7e32d

View File

@@ -356,8 +356,8 @@ static void showChanList (
epicsMutexMustLock ( client->chanListLock );
pciu = (struct channel_in_use *) pList->node.next;
while ( pciu ){
printf( "\t%s(%d%c%c)",
dbChannelRecord(pciu->dbch)->name,
printf( "\t%s (%d%c%c)",
dbChannelName(pciu->dbch),
ellCount ( &pciu->eventq ),
asCheckGet ( pciu->asClientPVT ) ? 'r': '-',
rsrvCheckPut ( pciu ) ? 'w': '-' );