rx: Remove multi_End_Ignore
[openafs.git] / src / rx / rx_multi.c
index 85cca41..7e9f07c 100644 (file)
@@ -120,21 +120,3 @@ multi_Finalize(struct multi_handle *mh)
     osi_Free(mh->ready, sizeof(short) * nCalls);
     osi_Free(mh, sizeof(struct multi_handle));
 }
-
-/* ignores all remaining multiRx calls */
-void
-multi_Finalize_Ignore(struct multi_handle *mh)
-{
-    int i;
-    int nCalls = mh->nConns;
-    for (i = 0; i < nCalls; i++) {
-       struct rx_call *call = mh->calls[i];
-       if (call)
-           rx_EndCall(call, 0);
-    }
-    MUTEX_DESTROY(&mh->lock);
-    CV_DESTROY(&mh->cv);
-    osi_Free(mh->calls, sizeof(struct rx_call *) * nCalls);
-    osi_Free(mh->ready, sizeof(short) * nCalls);
-    osi_Free(mh, sizeof(struct multi_handle));
-}