diff options
author | Aditya Mandaleeka <adityam@microsoft.com> | 2016-03-03 15:09:00 -0800 |
---|---|---|
committer | Aditya Mandaleeka <adityam@microsoft.com> | 2016-03-03 15:09:00 -0800 |
commit | 1a3ede46d43d6b6b3bef5de6f57011c66e1dd710 (patch) | |
tree | a3c493607115162828fb6b651a87b3ad409b9b95 /tests/src/baseservices | |
parent | 6cde55e0931af3d4e6a778f674d1ff1871827a97 (diff) | |
download | coreclr-1a3ede46d43d6b6b3bef5de6f57011c66e1dd710.tar.gz coreclr-1a3ede46d43d6b6b3bef5de6f57011c66e1dd710.tar.bz2 coreclr-1a3ede46d43d6b6b3bef5de6f57011c66e1dd710.zip |
Add license headers to ported threading tests.
Diffstat (limited to 'tests/src/baseservices')
109 files changed, 329 insertions, 2 deletions
diff --git a/tests/src/baseservices/threading/commitstackonlyasneeded/DefaultStackCommit.cs b/tests/src/baseservices/threading/commitstackonlyasneeded/DefaultStackCommit.cs index 0f96e70ec3..508d575948 100644 --- a/tests/src/baseservices/threading/commitstackonlyasneeded/DefaultStackCommit.cs +++ b/tests/src/baseservices/threading/commitstackonlyasneeded/DefaultStackCommit.cs @@ -1,4 +1,7 @@ -using System; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/tests/src/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs b/tests/src/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs index 59dd9f24b9..fef88b1306 100644 --- a/tests/src/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs +++ b/tests/src/baseservices/threading/commitstackonlyasneeded/StackCommitCommon.cs @@ -1,4 +1,7 @@ -using System; +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. +using System; using System.Collections.Generic; using System.Linq; using System.Text; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_ARENullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_ARENullRefEx.cs index 2d9e4b6a31..277dc1cade 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_ARENullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_ARENullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_MRENullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_MRENullRefEx.cs index 443cd2a26b..a273bc72e9 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_MRENullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_MRENullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_MutexNullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_MutexNullRefEx.cs index dfa05584a1..d339838d96 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_MutexNullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_MutexNullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_RWHNullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_RWHNullRefEx.cs index 5761876500..d50826df4c 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_RWHNullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_RWHNullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_SLENullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_SLENullRefEx.cs index 0ec905e4b7..58def9cc96 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_SLENullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_SLENullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; // using System.Runtime.Remoting; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_TSNullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_TSNullRefEx.cs index d8a21fa473..c969534083 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_TSNullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_TSNullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Runtime.Serialization; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_TimerNullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_TimerNullRefEx.cs index 80845a1e1e..8c4c7170ed 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_TimerNullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_TimerNullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/coverage/Nullref/CS_WHNullRefEx.cs b/tests/src/baseservices/threading/coverage/Nullref/CS_WHNullRefEx.cs index eb5c58933f..2067e12b83 100644 --- a/tests/src/baseservices/threading/coverage/Nullref/CS_WHNullRefEx.cs +++ b/tests/src/baseservices/threading/coverage/Nullref/CS_WHNullRefEx.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/AutoResetEvent/ConstructFalse.cs b/tests/src/baseservices/threading/events/AutoResetEvent/ConstructFalse.cs index b2b4aed1b7..7901f9018c 100644 --- a/tests/src/baseservices/threading/events/AutoResetEvent/ConstructFalse.cs +++ b/tests/src/baseservices/threading/events/AutoResetEvent/ConstructFalse.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/AutoResetEvent/ConstructTrue.cs b/tests/src/baseservices/threading/events/AutoResetEvent/ConstructTrue.cs index 9fedcc480a..161bc352ce 100644 --- a/tests/src/baseservices/threading/events/AutoResetEvent/ConstructTrue.cs +++ b/tests/src/baseservices/threading/events/AutoResetEvent/ConstructTrue.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast1.cs b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast1.cs index 1048797e56..3224b6960a 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast1.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast1.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast2.cs b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast2.cs index 28f5ecaed8..ffb535b504 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast2.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCast2.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor1.cs b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor1.cs index 69d2e440d3..779ef65f99 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor1.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor1.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor2.cs b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor2.cs index c3994affcb..e86187a786 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor2.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/AutoReset/AutoResetCtor2.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast1.cs b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast1.cs index 2ad09bb955..dc96ebc061 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast1.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast1.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast2.cs b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast2.cs index dc1af59b33..51723a920c 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast2.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCast2.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor1.cs b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor1.cs index 6335cefe62..ea4e6fe9a1 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor1.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor1.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor2.cs b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor2.cs index e19f99d54a..8100201f1a 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor2.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/ManualReset/ManualResetCtor2.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/NamedCommon.cs b/tests/src/baseservices/threading/events/EventWaitHandle/NamedCommon.cs index e793b73759..075f1ebafc 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/NamedCommon.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/NamedCommon.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructFalse.cs b/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructFalse.cs index 7711111bbe..2ea6f7eadb 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructFalse.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructFalse.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructTrue.cs b/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructTrue.cs index b57994edd6..94b99044ac 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructTrue.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/unit/AutoConstructTrue.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/unit/EventWaitHandleTest.cs b/tests/src/baseservices/threading/events/EventWaitHandle/unit/EventWaitHandleTest.cs index da028fefb3..3e2ee1dcd1 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/unit/EventWaitHandleTest.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/unit/EventWaitHandleTest.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructFalse.cs b/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructFalse.cs index 494d660205..459fe95b7f 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructFalse.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructFalse.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructTrue.cs b/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructTrue.cs index a9ad7cc6aa..6cb314c4fa 100644 --- a/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructTrue.cs +++ b/tests/src/baseservices/threading/events/EventWaitHandle/unit/ManualConstructTrue.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/events/ManualResetEvent/ConstructFalse.cs b/tests/src/baseservices/threading/events/ManualResetEvent/ConstructFalse.cs index 566edef102..ac4572799f 100644 --- a/tests/src/baseservices/threading/events/ManualResetEvent/ConstructFalse.cs +++ b/tests/src/baseservices/threading/events/ManualResetEvent/ConstructFalse.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/events/ManualResetEvent/ConstructTrue.cs b/tests/src/baseservices/threading/events/ManualResetEvent/ConstructTrue.cs index 26ea5b3f94..ab2b09a5fa 100644 --- a/tests/src/baseservices/threading/events/ManualResetEvent/ConstructTrue.cs +++ b/tests/src/baseservices/threading/events/ManualResetEvent/ConstructTrue.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit01.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit01.cs index e175cdbda9..9247770519 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit01.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit01.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit02.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit02.cs index 30829c4447..2409bc9d23 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit02.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit02.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit03.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit03.cs index 1e0d2f427a..ed906b191d 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit03.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit03.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit04.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit04.cs index 2184f5cd59..2c8225034a 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit04.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit04.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit05.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit05.cs index b879d2a8fd..e203506d96 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit05.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit05.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit06.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit06.cs index 65c4f95be4..53cda3220a 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit06.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit06.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit07.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit07.cs index 3ced28e57e..c36ef4b349 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit07.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit07.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit08.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit08.cs index 5f1d3a8757..747a86c420 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit08.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit08.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit09.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit09.cs index d39cf8cfd1..3499e30183 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit09.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit09.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit10.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit10.cs index 710e929688..b55eaa1d45 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit10.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit10.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit11.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit11.cs index 7d00e28f14..e01b74c413 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit11.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit11.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit12.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit12.cs index 99ea686d4f..b868cd4429 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit12.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit12.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit13.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit13.cs index e981bf5fea..ffe7bd2f64 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit13.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit13.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/EnterExit14.cs b/tests/src/baseservices/threading/generics/Monitor/EnterExit14.cs index 6bc0a8f7db..f5c3ba3d69 100644 --- a/tests/src/baseservices/threading/generics/Monitor/EnterExit14.cs +++ b/tests/src/baseservices/threading/generics/Monitor/EnterExit14.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/MonitorHelper.cs b/tests/src/baseservices/threading/generics/Monitor/MonitorHelper.cs index 1c14063ff4..716fbbc354 100644 --- a/tests/src/baseservices/threading/generics/Monitor/MonitorHelper.cs +++ b/tests/src/baseservices/threading/generics/Monitor/MonitorHelper.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; delegate void MonitorDelegate(object monitor); diff --git a/tests/src/baseservices/threading/generics/Monitor/TryEnter01.cs b/tests/src/baseservices/threading/generics/Monitor/TryEnter01.cs index 664522815d..ebb8ed0e6e 100644 --- a/tests/src/baseservices/threading/generics/Monitor/TryEnter01.cs +++ b/tests/src/baseservices/threading/generics/Monitor/TryEnter01.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/TryEnter03.cs b/tests/src/baseservices/threading/generics/Monitor/TryEnter03.cs index f4ba633d11..048ebbd99c 100644 --- a/tests/src/baseservices/threading/generics/Monitor/TryEnter03.cs +++ b/tests/src/baseservices/threading/generics/Monitor/TryEnter03.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/TryEnter04.cs b/tests/src/baseservices/threading/generics/Monitor/TryEnter04.cs index 5c65fe62a1..cff327921b 100644 --- a/tests/src/baseservices/threading/generics/Monitor/TryEnter04.cs +++ b/tests/src/baseservices/threading/generics/Monitor/TryEnter04.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/TryEnter05.cs b/tests/src/baseservices/threading/generics/Monitor/TryEnter05.cs index d9a5f41f12..314b211364 100644 --- a/tests/src/baseservices/threading/generics/Monitor/TryEnter05.cs +++ b/tests/src/baseservices/threading/generics/Monitor/TryEnter05.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/Monitor/TryEnter06.cs b/tests/src/baseservices/threading/generics/Monitor/TryEnter06.cs index b591fb1366..426b41a37f 100644 --- a/tests/src/baseservices/threading/generics/Monitor/TryEnter06.cs +++ b/tests/src/baseservices/threading/generics/Monitor/TryEnter06.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread01.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread01.cs index 635d0bd0e3..ec88c8b394 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread01.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread01.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread02.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread02.cs index 876ff18403..0b6319ba6f 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread02.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread02.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread03.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread03.cs index b8f69d41bd..2eeeae4338 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread03.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread03.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread04.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread04.cs index f641e5c425..a1fc2a49b3 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread04.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread04.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread05.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread05.cs index f3f69b5c3c..21fa1f72f3 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread05.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread05.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread06.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread06.cs index d7723f59ef..58b8b74c95 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread06.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread06.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread07.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread07.cs index 6bf78fb0f0..399f9f565d 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread07.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread07.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread08.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread08.cs index 0a50caf940..641e901bb1 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread08.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread08.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread09.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread09.cs index d08101a846..8af00c59d4 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread09.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread09.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread10.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread10.cs index eb63125f94..2a9de822ae 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread10.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread10.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread11.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread11.cs index 06b6d05dab..e2668ab778 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread11.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread11.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread12.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread12.cs index 19bd8f60a1..a47ec63773 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread12.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread12.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread13.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread13.cs index 4d74b4a027..5b10a323bf 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread13.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread13.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread14.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread14.cs index 2cfa565893..0f784fe964 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread14.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread14.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread15.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread15.cs index 69aabce4eb..1af5326a7c 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread15.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread15.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread16.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread16.cs index 1eb2eddc29..192227c641 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread16.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread16.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread17.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread17.cs index ee59e1f77d..c5797b2434 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread17.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread17.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread18.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread18.cs index 652ea65124..6e1db0802a 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread18.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread18.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread19.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread19.cs index 2e2455bc51..039914a792 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread19.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread19.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread20.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread20.cs index b81271805f..de828c39de 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread20.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread20.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread21.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread21.cs index a3a908d16a..a62088d444 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread21.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread21.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread22.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread22.cs index 2491bc515e..e5bbf61fc8 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread22.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread22.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread23.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread23.cs index c89875c948..e487131612 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread23.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread23.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread24.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread24.cs index 14b1651573..86fd7a090f 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread24.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread24.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread25.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread25.cs index 8e1b95e264..77a242e97f 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread25.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread25.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread26.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread26.cs index 48c9deefd7..2caf79a4ba 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread26.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread26.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread27.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread27.cs index 32a6a125fb..b9e422f628 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread27.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread27.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread28.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread28.cs index cfcd9f60a4..77e0d6e21a 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread28.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread28.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread29.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread29.cs index c9724f3aa2..0286f4bb17 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread29.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread29.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/thread30.cs b/tests/src/baseservices/threading/generics/TimerCallback/thread30.cs index babec5ca46..56676fb7b1 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/thread30.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/thread30.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/TimerCallback/tighttimercallback.cs b/tests/src/baseservices/threading/generics/TimerCallback/tighttimercallback.cs index ebd38521b0..80635a1afe 100644 --- a/tests/src/baseservices/threading/generics/TimerCallback/tighttimercallback.cs +++ b/tests/src/baseservices/threading/generics/TimerCallback/tighttimercallback.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; using System.Diagnostics; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread01.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread01.cs index 261b95d65a..f253494a3d 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread01.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread01.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread02.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread02.cs index e3d707cbd9..14e58e834a 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread02.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread02.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread03.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread03.cs index 09d026a7df..2ca4aa49b5 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread03.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread03.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread04.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread04.cs index 38d00f3b66..de952fe2bb 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread04.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread04.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread05.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread05.cs index bf0fb64645..504ec78a10 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread05.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread05.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread06.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread06.cs index d031dff8f1..d5b71c33f0 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread06.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread06.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread07.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread07.cs index bd040a659c..28f2e3864f 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread07.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread07.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread08.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread08.cs index 72caf04e99..95712b22f0 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread08.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread08.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread09.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread09.cs index 5376b1dfce..6f2d737d5e 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread09.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread09.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread10.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread10.cs index 11fc065a8b..bd0f595ca9 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread10.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread10.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread11.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread11.cs index 1a5488bce3..d835dfc7db 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread11.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread11.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread12.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread12.cs index e67c2caa6f..82be6836ea 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread12.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread12.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread13.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread13.cs index 220adfb0e3..e13a83d20e 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread13.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread13.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread14.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread14.cs index 032ef73aaf..fa68b5cf06 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread14.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread14.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread15.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread15.cs index e675f55564..75b7aa3a2e 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread15.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread15.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread16.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread16.cs index f5a6c3fa6e..48e906b9f5 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread16.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread16.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread17.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread17.cs index b55f7d89a5..b51bd27627 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread17.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread17.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread18.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread18.cs index a9b4b76ef6..e8f989609a 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread18.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread18.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread19.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread19.cs index e349af58cd..9a295c0fca 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread19.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread19.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread20.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread20.cs index 0d9fbc4721..c6a19a14d0 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread20.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread20.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread21.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread21.cs index eabd6fc984..e6c0f6dbe4 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread21.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread21.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread22.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread22.cs index 2ba7e54f2f..ef2c656de2 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread22.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread22.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread23.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread23.cs index 55e3b64f88..7df7392a64 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread23.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread23.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread24.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread24.cs index 1116522006..ca6bfc33fd 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread24.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread24.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread25.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread25.cs index a7466d126a..973231f41b 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread25.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread25.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread26.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread26.cs index dfbbfc7107..7cc3dce282 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread26.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread26.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread27.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread27.cs index f97794a598..bbe99f4cdf 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread27.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread27.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread28.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread28.cs index 63f5828254..ac48e97abf 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread28.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread28.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread29.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread29.cs index 5bb1305a79..6963728164 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread29.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread29.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; diff --git a/tests/src/baseservices/threading/generics/WaitCallback/thread30.cs b/tests/src/baseservices/threading/generics/WaitCallback/thread30.cs index bb6be407cb..ef14e682ed 100644 --- a/tests/src/baseservices/threading/generics/WaitCallback/thread30.cs +++ b/tests/src/baseservices/threading/generics/WaitCallback/thread30.cs @@ -1,3 +1,6 @@ +// Licensed to the .NET Foundation under one or more agreements. +// The .NET Foundation licenses this file to you under the MIT license. +// See the LICENSE file in the project root for more information. using System; using System.Threading; |