Fixing tests - and all sorts of issues

This commit is contained in:
Stephan
2017-06-23 18:54:42 +02:00
parent 08ce8bc4dc
commit e87be7ad9d
57 changed files with 585 additions and 265 deletions

View File

@@ -22,6 +22,16 @@
/// <para>Reads from, and writes to, a scope-local cache.</para>
/// <para>Upon scope completion, clears the global L2 cache.</para>
/// </remarks>
Scoped = 2
Scoped = 2,
/// <summary>
/// No cache.
/// </summary>
/// <remarks>
/// <para>Bypasses caches entirely.</para>
/// <para>Upon scope completion, clears the global L2 cache.</para>
/// fixme - what about a L1 cache?
/// </remarks>
None = 3
}
}