
{    The purpose of this routine is to verify that servers, started by the
{    access method, have successfully signed on.  Once they have signed on
{    the system task no longer has control over the incoming connect requests.
{    If a server has not signed on within the connection time-out limit, the
{    access method will abort any incoming connections.
{
{    FOR  each server entry  DO
{      FOR  each server job  DO
{        IF  not signed on within threshold  THEN
{          remove the job entry.
{        IFEND
{      FOREND
{      FOR  each incoming connect  DO
{        IF  connect has not been retrieved within threshold
{            OR the abort connections deactivation is requested  THEN
{          terminate the incoming connect.
{        IFEND
{      FOREND
{      IF  the server job connects are to be aborted  THEN
{        terminate all corresponding connections.
{      IFEND
{      IF  the server is rhfam-initiated
{          AND  there are excess incoming connects  THEN
{        start more server jobs.
{      IFEND
{    FOREND
{    FOR  each client entry  DO
{      IF  the abort connections deactivation is requested  THEN
{        terminate all corresponding connections.
{      IFEND
{    FOREND
{
{    current_time: (input) This parameter specifies the time, in microseconds, that
{      this procedure was called.
