Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/referencesource/System.Web/AspNetSynchronizationContext.cs')
-rw-r--r--mcs/class/referencesource/System.Web/AspNetSynchronizationContext.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/mcs/class/referencesource/System.Web/AspNetSynchronizationContext.cs b/mcs/class/referencesource/System.Web/AspNetSynchronizationContext.cs
index f402d77d87f..50d1538c9b0 100644
--- a/mcs/class/referencesource/System.Web/AspNetSynchronizationContext.cs
+++ b/mcs/class/referencesource/System.Web/AspNetSynchronizationContext.cs
@@ -117,11 +117,11 @@ namespace System.Web {
Interlocked.Increment(ref _state.VoidAsyncOutstandingOperationCount);
}
- // Dev11
-
-
-
-
+ // Dev11 Bug 70908: Race condition involving SynchronizationContext allows ASP.NET requests to be abandoned in the pipeline
+ //
+ // When the last completion occurs, the _pendingCount is decremented and then the _lastCompletionCallbackLock is acquired to get
+ // the _lastCompletionCallback. If the _lastCompletionCallback is non-null, then the last completion will invoke the callback;
+ // otherwise, the caller of PendingCompletion will handle the completion.
internal override bool PendingCompletion(WaitCallback callback) {
return _state.Helper.TrySetCompletionContinuation(() => callback(null));
}