-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathSourceHeader.cs
More file actions
22 lines (18 loc) · 873 Bytes
/
Copy pathSourceHeader.cs
File metadata and controls
22 lines (18 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This is a collection of .NET concurrency utilities, inspired by the classes
// available in java. This utilities are written by Iulian Margarintescu as described here
// https://github.com/etishor/ConcurrencyUtilities
//
//
// Striped64 & LongAdder classes were ported from Java and had this copyright:
//
// Written by Doug Lea with assistance from members of JCP JSR-166
// Expert Group and released to the public domain, as explained at
// http://creativecommons.org/publicdomain/zero/1.0/
//
// Source: http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/src/jsr166e/Striped64.java?revision=1.8
//
// By default all added classes are internal to your assembly.
// To make them public define you have to define the conditional compilation symbol CONCURRENCY_UTILS_PUBLIC in your project properties.
//
#pragma warning disable 1591
// ReSharper disable All