]> xenbits.xensource.com Git - pvdrivers/win/xenvkbd.git/commitdiff
Scripted replacement of Copyright notices in source
authorOwen Smith <owen.smith@citrix.com>
Tue, 28 Mar 2023 11:52:22 +0000 (12:52 +0100)
committerPaul Durrant <pdurrant@amazon.com>
Fri, 31 Mar 2023 19:26:03 +0000 (20:26 +0100)
Due to a transfer of copyright ownership from Citrix to Cloud Software Group,
the copyright notices in all source files should be updated.

Using the powershell script below replace "Copyright (c) Citrix Systems, Inc."
with "Copyright (c) Xen Project." and "Copyright (c) Cloud Software Group, Inc."

Function Multiline-Replace {
    param(
        [string]$Filename,
        [string]$ToReplace,
        [array]$ReplaceWith
    )

    $content = Get-Content $Filename
    $replace = $false
    $output = ""
    $content | ForEach {
        $line = $_
        if ($line.Contains($ToReplace)) {
            $replace = $true
            $ReplaceWith | ForEach {
                $output += $line.Replace($ToReplace, $_) + "`n"
            }
        } else {
            $output += $line + "`n"
        }
    }
    if ($replace) {
        Write-Host "Replacing: " $Filename
        $output | Set-Content $Filename
    } else {
        Write-Host "Ignoring:  " $Filename
    }
}

Function Replace-Filestrings {
    param(
        [array]$FilleTypes,
        [string]$ToReplace,
        [array]$Replacements,
        [array]$ExcludeList
    )

    $FileTypes | ForEach {
        Get-ChildItem $_ -Recurse | ForEach-Object {
            $filename = $_
            if (($ExcludeList | %{ $filename -Like $_ }) -Contains $True) {
                Write-Host "Excluding: " $filename
            } else {
                Multiline-Replace $_ $ToReplace $Replacements
            }
        }
    }
}

$ExcludeList = @("*include\xen\*", "*\obj\*")
$Replace = "Copyright (c) Citrix Systems Inc."

$Replacements = @("/* Copyright (c) Xen Project.", " * Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("*.c", "*.h", "*.rc")
Replace-Filestrings $FileTypes ('/* ' + $Replace) $Replacements $ExcludeList

$Replacements = @("; // Copyright (c) Xen Project.", "; // Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("*.mc")
Replace-Filestrings $FileTypes ('; // ' + $Replace) $Replacements $ExcludeList

$Replacements = @("; Copyright (c) Xen Project.", "; Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("*.inf", "*.def")
Replace-Filestrings $FileTypes ('; ' + $Replace) $Replacements $ExcludeList

$Replacements = @("Copyright (c) Xen Project.", "Copyright (c) Cloud Software Group, Inc.")
$FileTypes = @("LICENSE")
Replace-Filestrings $FileTypes $Replace $Replacements $ExcludeList

Signed-off-by: Owen Smith <owen.smith@citrix.com>
Manually fixed whitespace at end of files.

Signed-off-by: Owen Smith <owen.smith@citrix.com>
45 files changed:
LICENSE
include/cache_interface.h
include/debug_interface.h
include/evtchn_interface.h
include/gnttab_interface.h
include/hid_interface.h
include/range_set_interface.h
include/revision.h
include/store_interface.h
include/suspend_interface.h
include/unplug_interface.h
include/xen-types.h
include/xen-version.h
include/xen-warnings.h
include/xen.h
src/coinst/coinst.c
src/coinst/xenvkbd_coinst.def
src/xenvkbd.inf
src/xenvkbd/assert.h
src/xenvkbd/bus.c
src/xenvkbd/bus.h
src/xenvkbd/dbg_print.h
src/xenvkbd/driver.c
src/xenvkbd/driver.h
src/xenvkbd/fdo.c
src/xenvkbd/fdo.h
src/xenvkbd/frontend.c
src/xenvkbd/frontend.h
src/xenvkbd/hid.c
src/xenvkbd/hid.h
src/xenvkbd/mrsw.h
src/xenvkbd/mutex.h
src/xenvkbd/names.h
src/xenvkbd/pdo.c
src/xenvkbd/pdo.h
src/xenvkbd/registry.c
src/xenvkbd/registry.h
src/xenvkbd/ring.c
src/xenvkbd/ring.h
src/xenvkbd/thread.c
src/xenvkbd/thread.h
src/xenvkbd/types.h
src/xenvkbd/util.h
src/xenvkbd/vkbd.h
src/xenvkbd/xenvkbd.rc

diff --git a/LICENSE b/LICENSE
index 00be66607d13ddbf1b4ae00eee762b98c60bacdb..6604afc3732225b8cb847eef2354507bdbc41e61 100644 (file)
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,5 @@
-Copyright (c) Citrix Systems Inc.
+Copyright (c) Xen Project.
+Copyright (c) Cloud Software Group, Inc.
 All rights reserved.
 
 Redistribution and use in source and binary forms, 
@@ -27,4 +28,3 @@ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
 OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
 SUCH DAMAGE.
-
index ce50f4e463767b985831768ff9ed4d63a5372ba7..97fa31554d9bdf9423f96dfc17ce571d567d524b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index cc71db07caaf0adc5912b4409f3c231c4fe564f8..79729c721b1fb914cb1a13964e9b8a616f178fe5 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -172,4 +173,3 @@ typedef struct _XENBUS_DEBUG_INTERFACE_V1 XENBUS_DEBUG_INTERFACE, *PXENBUS_DEBUG
 #define XENBUS_DEBUG_INTERFACE_VERSION_MAX  1
 
 #endif  // _XENBUS_DEBUG_INTERFACE_H
-
index 05c342e50db845ab3e34b836693b47608a2247f6..ef674878120576cb15408c5bbea2746695fe4e5c 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -358,4 +359,3 @@ typedef struct _XENBUS_EVTCHN_INTERFACE_V9 XENBUS_EVTCHN_INTERFACE, *PXENBUS_EVT
 #define XENBUS_EVTCHN_INTERFACE_VERSION_MAX 9
 
 #endif  // _XENBUS_EVTCHN_INTERFACE_H
-
index e3ee888bd9792704f213a18ea4ca45b10188cce1..4fc8f1fb75a9fb1f557f274fadef26e887afbfff 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -300,4 +301,3 @@ typedef struct _XENBUS_GNTTAB_INTERFACE_V4 XENBUS_GNTTAB_INTERFACE, *PXENBUS_GNT
 #define XENBUS_GNTTAB_INTERFACE_VERSION_MAX 4
 
 #endif  // _XENBUS_GNTTAB_INTERFACE_H
-
index 93a88510929662e9f571d89347b1ea53ed6a8237..2e2d9e6b8e4f51236e2cd09adf139666f25a0619 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5ab416d75bcd2d5d92d163e911f4618cc3122fb4..c45a161636c6bea0fa6cd6c6ec5816776b88a76d 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -176,4 +177,3 @@ typedef struct _XENBUS_RANGE_SET_INTERFACE_V1 XENBUS_RANGE_SET_INTERFACE, *PXENB
 #define XENBUS_RANGE_SET_INTERFACE_VERSION_MAX 1
 
 #endif  // _XENBUS_RANGE_SET_INTERFACE_H
-
index b7f798cefdcba8f7cb7ddda1cbef4cde08f213b5..ff043be414e52c3a8ef9cf4f0bb2e0fb65355062 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index e1251dd1369f7ca20f7acb5e5ec9ed347cce363c..ca883bd2986214d9567e39e3b0c6a2a5cfc254e2 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -325,4 +326,3 @@ typedef struct _XENBUS_STORE_INTERFACE_V2 XENBUS_STORE_INTERFACE, *PXENBUS_STORE
 #define XENBUS_STORE_INTERFACE_VERSION_MAX  2
 
 #endif  // _XENBUS_STORE_INTERFACE_H
-
index cbe11ab6d9e4f4ad21ac54f0edbc6483728a577c..4176dc37ab1f70cae344a7a40121e4a30f48d7b0 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -174,4 +175,3 @@ typedef struct _XENBUS_SUSPEND_INTERFACE_V1 XENBUS_SUSPEND_INTERFACE, *PXENBUS_S
 #define XENBUS_SUSPEND_INTERFACE_VERSION_MAX    1
 
 #endif  // _XENBUS_SUSPEND_INTERFACE_H
-
index 83b3dc98d8bef5d8fe517330702dc5ee855bab5d..e465e2e9e93cbcde84d1d3fc93817fef46173821 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -113,4 +114,3 @@ typedef struct _XENBUS_UNPLUG_INTERFACE_V1 XENBUS_UNPLUG_INTERFACE, *PXENBUS_UNP
 #define XENBUS_UNPLUG_INTERFACE_VERSION_MAX  1
 
 #endif  // _XENBUS_UNPLUG_INTERFACE_H
-
index cfad732b11a3da2e01610f61c317cfacceb7b9a8..24805265bd871a173df25d843422ed54e3ca0ec9 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5da4233853c0381c5015444e1011cd5075242c11..d77a531ea3723475ea010acc945f6f11c1586743 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5a095b4f5bb37b854e3c1f0b6d06187d7000438e..b15870c5c78654d3d4b7c484b0a5364537657601 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 8ef84161688b1a29da13e46155587363283e27ff..af514a2c08319205d326d093b0ee0dd3249030de 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index da2c59e1c5488bdcde799dd1c0cc88d5d509c9a9..49e5e5e4267b629746f044939b5d8e17cc50c0f9 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index df65c7f13c202a898e34c6b9d1a54c7f8859e988..71d8f65d3c4c5f190f24588a458ea711b06d508f 100644 (file)
@@ -1,4 +1,5 @@
-; Copyright (c) Citrix Systems Inc.
+; Copyright (c) Xen Project.
+; Copyright (c) Cloud Software Group, Inc.
 ; All rights reserved.
 ; 
 ; Redistribution and use in source and binary forms, 
index 3d67ef09d1081f813fed19fa90846cabdea143d7..08d96d0dc77ae54a31c0f23cdedb42d4d42c1589 100644 (file)
@@ -1,4 +1,5 @@
-; Copyright (c) Citrix Systems Inc.
+; Copyright (c) Xen Project.
+; Copyright (c) Cloud Software Group, Inc.
 ; All rights reserved.
 ;
 ; Redistribution and use in source and binary forms, 
index d28fcfe208ae5b0782bf75c91fe5c69ad4a21c12..fe76f98fabdde6ef95f88abe5e33779c6fd07f45 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 89e0f245e67bc4d4fc911a640fb0003f62734a0d..8bd5b3c894dd4d59f441420e4bf6b14631977400 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index a48dff68089c7b6b68cb518c301c2e7736713265..99a58a79d73ede666fd4a54db889276263decfe5 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -49,4 +50,3 @@ BusTeardown(
     );
 
 #endif  // _XENVKBD_BUS_H
-
index 751655bbd04bae9904cf101e459dee1024cb58c6..dc9f8b168e43774148b54f87ec9191d79fa39f64 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 26f6cb2a821832f8e4ff3b094cf1fb81ddf814d5..818f9dcaaab7ff34fd459e850174c52999603654 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 3999905afc46e946c8dae629f14c8ffa765b6a8d..7612a9a96f4eb64d857b75db460a737d48703b7a 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 61949cf2a7a5547a3e9a6a1d3fb47b61522be154..5c00ee1798822a17d4e9f9701c3f20fcee4b4279 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 677a9dabc1f7d2c8f1d55700487c38ad8f6e7361..d9ec308d8bb3502bd3c6c152e6d389661cfb67ba 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 1d6d360dd6fe4f03450193695e6916ce09198470..801ba3502f21666a242868b434b9984b73c6cbab 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index f4e338ffb673e387fca9138829c4942cc628c48e..d67851b68d520050655fa4d40c0972b9edd32d9b 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 8a90dd1fe491334bea049a285f4acf0c2976a3f9..98cac432d34097c5ee38fae5ac5e7ef3f86f56c0 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 116f749e7b07c13d9b19359ea821b10241172994..11304157e8df2a858a64ce52d84f259bd6ff322f 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -70,4 +71,3 @@ HidSendReadReport(
     );
 
 #endif  // _XENVKBD_VKBD_H
-
index ee480a3f339f9328877f3d673fcbc39d3b1ccd1f..929415e8661065b23e568eb38459dd1e02e6864d 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index de98ab7700b58f7d933bd5dde5fad77efe11353b..d60d9e12273be619cddc4893c0dc83660f7d45ed 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 58ef694388c7d996acb667de47897152651bb41d..db3e58dad767babd9a16ad806be7a50645dd6a6f 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index d1019104958b2e6469c3684c29b73bfc86b5fed3..3591e147943f8e06b9e6e2fc04766b83eabcbe25 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 5e68a863ef877522948d3404c8d7a6f3e4fb7ce4..166bb277941d50af8095243e71dae8671e003409 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 9f5628cd559ea929edf2ae1d3d54104de3bf9b6f..8f848184344af65fc71fc17d8e10e3616c0f1fa4 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 4ade0400951e3b511583a06b90596c871cd4e58c..904ff10c97879c1d9228216bd2ea50c52d6aff89 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index acb0a5c607d61e18a501edd143677b48dd79df9e..a91c31ff9ad7ff58b3f265b3baf13cef35342419 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index bfc6c4fec75795699c75b8feec729aabf96cd7ae..cf0b139a1d2d50b68572326facfc3b80669353a6 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 65e14ae3dcd5b6169876c2f54e21a4557d924ca4..5cb6b09ad79dbb460d56629f8a27846faa4cb4ae 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -223,4 +224,3 @@ ThreadJoin(
 
     __ThreadFree(Thread);
 }
-
index 5db568bafa206d282159e1e9a163157ed2672e29..37796a278cb2d662e46a73ad8432784425eb20ef 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
@@ -72,4 +73,3 @@ ThreadJoin(
     );
 
 #endif  // _XENVKBD_THREAD_H
-
index 9ec16dc0f579789d393a86a5564377c90cf19000..c7984775e890de3c3c93e9a60e4c170a727d6101 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index 517b01574f3907c90a7e0da923d458a2eb8846be..f3937095695b45d574e32b9e67cbd2a18752a651 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms,
index 7cec2d061fcfb9aa9962bcb334f212d37e4814dc..abdf934880c8a6027150e67cd59b64ef6e6f73b5 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms, 
index e198e27139549d346f36ad1a52d39bd552e770ea..3f2c9b72a0f436868b1512bfa585d21e92cf25fb 100644 (file)
@@ -1,4 +1,5 @@
-/* Copyright (c) Citrix Systems Inc.
+/* Copyright (c) Xen Project.
+ * Copyright (c) Cloud Software Group, Inc.
  * All rights reserved.
  * 
  * Redistribution and use in source and binary forms,