Skip to content

Commit

Permalink
Merge bbc7971 into cb15717
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-ess committed Apr 3, 2024
2 parents cb15717 + bbc7971 commit 9e7339c
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions modules/database/src/ioc/as/asCa.c
Expand Up @@ -225,6 +225,11 @@ static void asCaTask(void)
if(asCaDebug) printf("asCaTask has cleared all channels\n");
epicsEventSignal(asCaTaskWait);
}

/* ATM never reached, just a placeholder */
cantProceed("Unreachable. Perpetual thread.");

taskwdRemove(0);
}

void asCaStart(void)
Expand Down
6 changes: 6 additions & 0 deletions modules/database/src/ioc/rsrv/caservertask.c
Expand Up @@ -120,6 +120,11 @@ static void req_server (void *pParm)
}
}
}

/* ATM never reached, just a placeholder */
cantProceed("Unreachable. Perpetual thread.");

taskwdRemove(0);
}

static
Expand Down Expand Up @@ -748,6 +753,7 @@ void rsrv_init (void)
if(!havesometcp)
cantProceed("CAS: No TCP server started\n");
}
free(socks);

/* servers list is considered read-only from this point */

Expand Down
4 changes: 4 additions & 0 deletions modules/database/src/ioc/rsrv/online_notify.c
Expand Up @@ -129,7 +129,11 @@ void rsrv_online_notify_task(void *pParm)
}
}

/* ATM never reached, just a placeholder */
cantProceed("Unreachable. Perpetual thread.");

free(lastError);
taskwdRemove(0);
}


0 comments on commit 9e7339c

Please sign in to comment.