2 writes to m_exceptionalChildren
mscorlib (2)
system\threading\Tasks\Task.cs (2)
2383Interlocked.CompareExchange(ref props.m_exceptionalChildren, new List<Task>(), null); 2448props.m_exceptionalChildren = null;
4 references to m_exceptionalChildren
mscorlib (4)
system\threading\Tasks\Task.cs (4)
2253List<Task> exceptionalChildren = props != null ? props.m_exceptionalChildren : null; 2381if (props.m_exceptionalChildren == null) 2390List<Task> tmp = props.m_exceptionalChildren; 2421List<Task> tmp = (props != null) ? props.m_exceptionalChildren : null;