removed warning message when lower priority is unavailable

This commit is contained in:
Jeff Hill
2000-06-08 15:00:57 +00:00
parent 436cdc0562
commit 10570cfe0c
2 changed files with 0 additions and 4 deletions

View File

@@ -324,8 +324,6 @@ extern "C" void cacRecvThreadTCP (void *pParam)
tbs = threadHighestPriorityLevelBelow (priorityOfSelf, &priorityOfSend);
if ( tbs != tbsSuccess ) {
priorityOfSend = priorityOfSelf;
ca_printf (
"CAC warning: unable to get a lower priority for a TCP send thread\n");
}
tid = threadCreate ("CAC TCP Send", priorityOfSend,
threadGetStackSize (threadStackMedium), cacSendThreadTCP, piiu);
@@ -486,7 +484,6 @@ tcpiiu::tcpiiu (cac *pcac, const struct sockaddr_in &ina, unsigned minorVersion,
tbs = threadHighestPriorityLevelBelow (priorityOfSelf, &priorityOfRecv);
if ( tbs != tbsSuccess ) {
priorityOfRecv = priorityOfSelf;
ca_printf ("CAC warning: unable to get a lower priority for a TCP recv thread\n");
}
tid = threadCreate ("CAC TCP Recv", priorityOfRecv,

View File

@@ -481,7 +481,6 @@ udpiiu::udpiiu (cac *pcac) :
tbs = threadHighestPriorityLevelBelow (priorityOfSelf, &priorityOfSend);
if ( tbs != tbsSuccess ) {
priorityOfSend = priorityOfSelf;
ca_printf ("CAC warning: unable to get a lower priority for a UDP send thread\n");
}
tid = threadCreate ( "CAC UDP Send", priorityOfSend,