summaryrefslogtreecommitdiff
path: root/src/pal/tests/palsuite/composite/synchronization
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/tests/palsuite/composite/synchronization')
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/criticalsection/criticalsection.c7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/criticalsection/mainWrapper.c7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.cpp7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.h7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/pal_composite_native_cs.c7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.cpp7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.h7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/hpitinterlock.s7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/interlocked.cpp7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.cpp7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.h7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/pal_composite_native_cs.c7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.cpp7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.h7
-rw-r--r--src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/sparcinterloc.s7
15 files changed, 45 insertions, 60 deletions
diff --git a/src/pal/tests/palsuite/composite/synchronization/criticalsection/criticalsection.c b/src/pal/tests/palsuite/composite/synchronization/criticalsection/criticalsection.c
index 9425335078..2fcd363e8a 100644
--- a/src/pal/tests/palsuite/composite/synchronization/criticalsection/criticalsection.c
+++ b/src/pal/tests/palsuite/composite/synchronization/criticalsection/criticalsection.c
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
/*============================================================
**
diff --git a/src/pal/tests/palsuite/composite/synchronization/criticalsection/mainWrapper.c b/src/pal/tests/palsuite/composite/synchronization/criticalsection/mainWrapper.c
index 1bb7372632..4bc2f3d834 100644
--- a/src/pal/tests/palsuite/composite/synchronization/criticalsection/mainWrapper.c
+++ b/src/pal/tests/palsuite/composite/synchronization/criticalsection/mainWrapper.c
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
/*
Source Code: mainWrapper.c
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.cpp b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.cpp
index 88199ce376..790c89f966 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.cpp
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
//#include <stdio.h>
#include <assert.h>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.h b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.h
index e999b0f54e..bc44ad8ecd 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.h
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/mtx_critsect.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <pthread.h>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/pal_composite_native_cs.c b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/pal_composite_native_cs.c
index 86d8660493..40efacd7c9 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/pal_composite_native_cs.c
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/pal_composite_native_cs.c
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <stdio.h>
#include <stdlib.h>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.cpp b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.cpp
index c289097da0..c9ed9435f1 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.cpp
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
//#include "stdafx.h"
#include "resultbuffer.h"
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.h b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.h
index 07cea4bc36..8920958100 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.h
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecriticalsection/resultbuffer.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <stdio.h>
#include <iostream>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/hpitinterlock.s b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/hpitinterlock.s
index da0518be2d..062f4ebe6a 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/hpitinterlock.s
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/hpitinterlock.s
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
/*++
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/interlocked.cpp b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/interlocked.cpp
index 4edbc3e394..b6c1dd7a8f 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/interlocked.cpp
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/interlocked.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
typedef long LONG;
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.cpp b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.cpp
index 7a84132e89..69c10e9078 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.cpp
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <stdio.h>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.h b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.h
index 0070480ec2..becbf6f0ca 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.h
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/mtx_critsect.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <pthread.h>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/pal_composite_native_cs.c b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/pal_composite_native_cs.c
index 7c825375eb..4c19d3b0de 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/pal_composite_native_cs.c
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/pal_composite_native_cs.c
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <stdio.h>
#include <stdlib.h>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.cpp b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.cpp
index c289097da0..c9ed9435f1 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.cpp
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.cpp
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
//#include "stdafx.h"
#include "resultbuffer.h"
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.h b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.h
index 07cea4bc36..8920958100 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.h
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/resultbuffer.h
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
#include <stdio.h>
#include <iostream>
diff --git a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/sparcinterloc.s b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/sparcinterloc.s
index 8ae8a54229..b9708bc770 100644
--- a/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/sparcinterloc.s
+++ b/src/pal/tests/palsuite/composite/synchronization/nativecs_interlocked/sparcinterloc.s
@@ -1,7 +1,6 @@
-//
-// Copyright (c) Microsoft. All rights reserved.
-// Licensed under the MIT license. See LICENSE file in the project root for full license information.
-//
+// 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.
/*++