TaskExceptionSlot.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //
  2. // TaskExceptionSlot.cs
  3. //
  4. // Authors:
  5. // Marek Safar <[email protected]>
  6. // Jérémie Laval <jeremie dot laval at xamarin dot com>
  7. //
  8. // Copyright (c) 2008 Jérémie "Garuma" Laval
  9. // Copyright 2011 Xamarin Inc (http://www.xamarin.com).
  10. //
  11. // Permission is hereby granted, free of charge, to any person obtaining a copy
  12. // of this software and associated documentation files (the "Software"), to deal
  13. // in the Software without restriction, including without limitation the rights
  14. // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  15. // copies of the Software, and to permit persons to whom the Software is
  16. // furnished to do so, subject to the following conditions:
  17. //
  18. // The above copyright notice and this permission notice shall be included in
  19. // all copies or substantial portions of the Software.
  20. //
  21. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  22. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  23. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  24. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  25. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  26. // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  27. // THE SOFTWARE.
  28. //
  29. //
  30. #if NET_4_0
  31. using System;
  32. using System.Collections.Concurrent;
  33. namespace System.Threading.Tasks
  34. {
  35. internal class TaskExceptionSlot
  36. {
  37. public volatile AggregateException Exception;
  38. public volatile bool Observed;
  39. public ConcurrentQueue<AggregateException> ChildExceptions;
  40. Task parent;
  41. public TaskExceptionSlot (Task parent)
  42. {
  43. this.parent = parent;
  44. }
  45. ~TaskExceptionSlot ()
  46. {
  47. if (Exception != null && !Observed && !TaskScheduler.FireUnobservedEvent (parent, Exception).Observed) {
  48. // NET 4.5 changed the default exception behavior for unobserved exceptions. Unobserved exceptions still cause
  49. // the UnobservedTaskException event to be raised but the process will not crash by default
  50. //
  51. // .NET allows to configure this using config element ThrowUnobservedTaskExceptions
  52. //
  53. #if !NET_4_5
  54. throw Exception;
  55. #endif
  56. }
  57. }
  58. }
  59. }
  60. #endif