]> xenbits.xensource.com Git - pvdrivers/win/xenbus.git/commitdiff
Scripted replacement of Copyright notices in source
authorOwen Smith <owen.smith@citrix.com>
Fri, 10 Feb 2023 08:44:38 +0000 (08:44 +0000)
committerPaul Durrant <pdurrant@amazon.com>
Thu, 23 Mar 2023 16:32:31 +0000 (16:32 +0000)
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."

NOTE: src/xen/vcpu.c was not changed, as copyright is assigned to Amazon.com, 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>
Amended commit comment. Fixed whitespace.

Signed-off-by: Paul Durrant <paul@xen.org>
119 files changed:
LICENSE
include/balloon_interface.h
include/cache_interface.h
include/console_interface.h
include/debug_interface.h
include/emulated_interface.h
include/evtchn_interface.h
include/gnttab_interface.h
include/range_set_interface.h
include/revision.h
include/shared_info_interface.h
include/store_interface.h
include/suspend_interface.h
include/unplug_interface.h
include/xen-errno.h
include/xen-types.h
include/xen-version.h
include/xen-warnings.h
include/xen.h
src/coinst/coinst.c
src/coinst/xenbus_coinst.def
src/coinst/xenbus_coinst.rc
src/common/assert.h
src/common/dbg_print.h
src/common/high.h
src/common/mutex.h
src/common/names.h
src/common/registry.c
src/common/registry.h
src/common/util.h
src/monitor/messages.mc
src/monitor/monitor.c
src/monitor/xenbus_monitor.rc
src/xen/acpi.c
src/xen/acpi.h
src/xen/bug_check.c
src/xen/bug_check.h
src/xen/driver.c
src/xen/driver.h
src/xen/event_channel.c
src/xen/grant_table.c
src/xen/hvm.c
src/xen/hypercall.c
src/xen/hypercall.h
src/xen/log.c
src/xen/log.h
src/xen/memory.c
src/xen/module.c
src/xen/module.h
src/xen/process.c
src/xen/process.h
src/xen/sched.c
src/xen/system.c
src/xen/system.h
src/xen/unplug.c
src/xen/unplug.h
src/xen/xen.def
src/xen/xen.rc
src/xen/xen_version.c
src/xenbus.inf
src/xenbus/balloon.c
src/xenbus/balloon.h
src/xenbus/bus.c
src/xenbus/bus.h
src/xenbus/cache.c
src/xenbus/cache.h
src/xenbus/console.c
src/xenbus/console.h
src/xenbus/debug.c
src/xenbus/debug.h
src/xenbus/dma.c
src/xenbus/dma.h
src/xenbus/driver.c
src/xenbus/driver.h
src/xenbus/evtchn.c
src/xenbus/evtchn.h
src/xenbus/evtchn_2l.c
src/xenbus/evtchn_2l.h
src/xenbus/evtchn_abi.h
src/xenbus/evtchn_fifo.c
src/xenbus/evtchn_fifo.h
src/xenbus/fdo.c
src/xenbus/fdo.h
src/xenbus/filters.c
src/xenbus/filters.h
src/xenbus/gnttab.c
src/xenbus/gnttab.h
src/xenbus/hash_table.c
src/xenbus/hash_table.h
src/xenbus/pdo.c
src/xenbus/pdo.h
src/xenbus/range_set.c
src/xenbus/range_set.h
src/xenbus/shared_info.c
src/xenbus/shared_info.h
src/xenbus/store.c
src/xenbus/store.h
src/xenbus/suspend.c
src/xenbus/suspend.h
src/xenbus/sync.c
src/xenbus/sync.h
src/xenbus/thread.c
src/xenbus/thread.h
src/xenbus/types.h
src/xenbus/unplug.c
src/xenbus/unplug.h
src/xenbus/xenbus.rc
src/xenfilt/driver.c
src/xenfilt/driver.h
src/xenfilt/emulated.c
src/xenfilt/emulated.h
src/xenfilt/fdo.c
src/xenfilt/fdo.h
src/xenfilt/pdo.c
src/xenfilt/pdo.h
src/xenfilt/thread.c
src/xenfilt/thread.h
src/xenfilt/types.h
src/xenfilt/xenfilt.rc

diff --git a/LICENSE b/LICENSE
index 00be66607d13ddbf1b4ae00eee762b98c60bacdb..c445255ced3c2a904684093146af602b51109c54 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, 
index 2d62e284f5e38e330479ca09494242f72128adca..ea5ded1b6b7c132e8892f5c7f031febf1a827fee 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 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 7c10cef353049802cab147c4bb0b5ace692ce940..6b4ba7a0c12e1d186d1a75bac95fd59abd1a6117 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..13d79eafe499346a11601d83227d078ca3e601bd 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 fe93d72544790f3a58aa4ba4b3ad371793071595..d8de085976553f971b49d5f673f3ab7c2302752b 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 05c342e50db845ab3e34b836693b47608a2247f6..2abe4870d20cc4669d005a55ba53ac4e0d7faa31 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 e3ee888bd9792704f213a18ea4ca45b10188cce1..76c9c07b1e9f28b5f24d0675e803b2f6b22ace3a 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..78794aa3fd227798681bbdc3dc9baacf481ccfde 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 3e3779fb8784f79a1299935adccaf0baed94dd6d..4d919274ff15cf3990818ab233ad8f2499b1ede8 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 27910b020a8e70946734ac35eca6958e47445a0d..7aaf4f5a04c3df915e706bb0733bf7aa716bd2b9 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..e6b9bce038605d0e8488457e1aead162031046a8 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 cbe11ab6d9e4f4ad21ac54f0edbc6483728a577c..8d6f40fdaf782a022fe474824ca28584c7755d23 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 83b3dc98d8bef5d8fe517330702dc5ee855bab5d..687d7cfdd0c26b3de619712c3de64cd7be13b277 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 9b8588e11ab82fda9ee989d543995fb09f9db2d0..5b9a1e64c08d760884497e5b385e1cdbe5980a70 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 dca29034c69214ae31f9e9e4215f24a26b12f43b..e4c19a4061f10f87ad93cd580113f0c247929490 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 45d25c9289570a9aedd4a5fd90157bf1938363df..951eb1f53d063bef605705240c9af1addc93c152 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 e1ed1178f0d2de35bcb2fd3d2f33ac9efce8b581..566e7136cf9803c99b7f5b4f40e8718d9add1f1b 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 8dc290cbf7d43a62bd20bbfe6eb3175368b92e0f..caa110290698cab91577326a961acf65731553db 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 dd9f5a38a63c2c0b8240d6fbc233478631d1efb6..4d46edc49272d843d9358f62f61c4cf2251f550d 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 ad186dfb49bcd0b23180612dcb0219048a3064f2..0d43ea9b3b6916fd5d8b2fbc489f9fac0c2a8b2b 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 baf58315fb17bf71cf9c8e443ae4a65eca03871b..a0bd72725987600c58c61ccd080f75109d441fc2 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 42fbcc7eb6119eae182f8dff766fdb328e3fee69..40cf0f5507baec5ce2c7aa42926b33ed7e6bfe3f 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 b402270effb032e2e47a647ecf8cb9864ef3425f..4f13236eaa6a75b5f32ccba9fb4a439f115ed48d 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 84267d18fe5ef1e33918110773ada7fe0ea63427..9bdfb1cea094e55750f164c41a710215616c93aa 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 b9b56e195a9f9f4c93f5ca26d961340ee5260883..0d29ddc2790cdcb99cf569e98d389bdb984875fe 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 1ac13b8e7be2cb337e45cd2db834c3e671c514ce..cbe9015521aabd7390c0fd7428f8a8b526ea77f3 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 61ae403d42955d4bcc4b287cf3276e38feb8af37..e68e463dbfd9eca1365deff9482eebbae0509227 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 9fff13512248a1ca08b59935ec9f6a1d9995156f..eb1d382d660cd02fb49a9b255ce31e6201c0190d 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 9adfb79ad68deb05a67aa700bd0df756ee018eb9..bb872ceb0ee6ea5d11c50629f683c3b870e87510 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 1and binary forms,
index 457bdc5059dc345ed658e148d7a5f29e6d188add..dc2fc1982180bb01ac6036cbc326247b1725ee3c 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 5defd7dd85cc1839b6a05a2f22b72aa0485e8f0c..418f8aebad49724f853a67f1603de84735306886 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 334f62af963883be2ebb6904d14686fc574f8e29..43759b29673bfe9580ec3a4c5bbb2c84c4553c86 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 1bcc3e381d7264345b0d13085b865113767937db..e1da1597ea242744be83524d378f8a89048cce37 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 1d1727eb908b42f3896817df2d3eb4cf044a3c1e..93bf811e2a9f17940b3d0b09cb4a9a5c73112ce5 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 3f126eefa8f2e5349dd38cde1017c22663cae078..8fe6c5cfbf3d7c12350c3a14c442d0ed90919419 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 11b421b10f76a08dcce4af1a2287ec21dad005a3..210b561b5ebb854870559fba93d512e541a7759d 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 2bce1c1c163b99caaa272f2ccacdf8dc31d03625..234416969b8f0bf3ce2494d9c53eaefb4f671a2e 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 100657917a31f9f4a136ee9d55724ea8adb5178f..65c7d13058ad6fbe4079ccd403fecd119171bde4 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 6badbf87b0461751be55774dbbe1d9fcb41f491d..98876816c80c4765b03e8b9ae9970aa8a79bd8e7 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 c56f218537ff14cfad7dce29cbee0548313df0de..911ae4f2569f0d384124996ea326d7e86626bdd3 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 c9e34a90c84b1391cae4f204ae73000a8b11a212..306d9ab0160d57907d1c3cbca5c423145ea0da6f 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 5044070392f21b47f7baecf195b74f035c0acf63..20c9a4acce5ed79af525b6d66528e844adf5d8a2 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 6af31586e14db6fecdd495bec7cf87e05d8506c9..b1593500a297c8109d2c09a5635a57d2352be2f2 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 5cdbe9d2d75294cf33b4e19b36250a1bd1e3d91c..0def3377eb825016472ae327c053bb4e1bbcdfc2 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 1813e3bfa62611784304f9aa58565829694c2394..1f0212f4cece0f60c40171b4a17ae5262edeb4a1 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 4960ca719f080760923fe1b9b087b64aaac0d5fd..7bed06272da2a40971a3c6b1bd6589d2c33a7b36 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 db3b1f7fb5ff0cb2f37943cb90db637dc7752608..44911963c9d86d7676369c2902fa7b9f53f117e2 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 d831ded668e51295fa52108222ad8b46de747c31..3b0233ede22e7ca268e1f68072c48505f37e9fd0 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 11ca5224165040a35540d61aa44e86a5485b72ae..a6e2a272a68e72df124465396f5e1db3dc79921d 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 6b2a3dc1eff91a5945634e748092340f638a6ecb..3c013975dedc7a07a1886711e854c67204427580 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 7b2b96b22834e380ded0832aa2dabf39fd1f5f7c..b80ba94b2958cd67c2e15847de32c5be8b42d1c4 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 c9a29a6a3c8925d4764be1f31760e820c8312b5c..ab94da5bc375d8c09aab0c5cf09de5f59c807979 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 bd8e67ca498d703731acb33632618dbc21144f31..dbdcf84331474036cec2e72b920bf856344f1a57 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 27a5dda809d86fd4b45b0857989b8084da5aa1e8..dd188cff59d01203ee931e799ee035841aeefa17 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 e9ce1b5ff87e4bf348999653cfdb966d8a4df945..ad79b0c43fb636fc4d6a76c82b07ae6971e563e3 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 6ef061fd7d5210ea59bf9e1ebc4fe367d8a58da6..3fa20b7071019b495b458ac6279b04c456658dfd 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 f9a54752e3bd47e47e60d29fdeb837d7022a5ec5..59eab7b92d3090645158e8b37fa3cbd8d025bd09 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 202733c6a051f09d3950ca51986065385f2f45e7..8d7e2c257f5223098f28fbd90de1ec3678097e41 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 03570f34f2afc919057c5010ca8ed65628f6db00..db3a72f0ca09173fc93b12baab4313ca24b515df 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 6443281b035ade5d2e474e20855d2e2ef25a7c53..2f20a39f5b1b6c6dffb7116fc1bac0d8a09a9212 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 8c7656610e6bbb98e95549a34c7509dfa3c1e5be..15ac48d9fb94dd8fb075b9f63329c9694d5209c1 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 b1d3fe55320fb87e3ac7932d74432ff94ac9c80d..07dcd5663aba634be41e6402a056d9f268022540 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 be94973f13bf9fdc3dd6909ef65985a588b5c999..2dc38211ae6126f9fd7c4dcefe2f009f4c106848 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 e638b3f4c84a7d54f0e7d55368eb7c54e38960c9..b94b00bb52330d2c7114901ecfeedbdfae100796 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 87be7ec8bf5598a742bdedc4d73dafd64e3f30cc..8c8f0ad3eb082ae0fff452c99368b8e5e3b97357 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 794a4325c6d7625a86a97a89c05edead0f24397f..937547f02dda223280b048b28f7c80fa0d50ae1f 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 dd7ec08cd05df9322bb0bb413bd58ad450317101..06b21d6cd0b9d6e7dcaeb1271e8b5a22014c99c0 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 a4e5694710afbb854dc475fab455ccf8f6a5d1c0..a166dbb72a612c63f3fd607dc795b40190e04135 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 457e0eb2ef886288395b06e7ec5bb4584d4e361f..dbb829e4c6cdc570b677b8f35ee30611d322c0cc 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 667f8e47d6ce6f560a7c0be51fb5c4af82aa6c3b..522acef0ca676a57547df233692b3d16395541de 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 55ec97be42b832229dd6c28b0888071f281a8c4c..7cd5add8033426246f583a5dd5df4f895db040b6 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 ccc8f2e06a0653332156c6f458c890ead8604227..2e63edb93b781ef40d93411acb9d023d69ed9641 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 31250b2b7d86af03c33a4a590f3a4fd0d50b66ec..7a869af6e1757dead3f963606d4b17737104fffd 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 99a37798932b918a25dea5227184e1d6f50c3fc3..f63ef3e33ea2e86821f890a044342a7cc3fe672a 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 c69c55503fee3639690462f58cfb83ec6f1c126c..15ab9b47c7585f32b1185f9bfe46796d83384fd1 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 404f85a5f42640dcae38fa3a25a2624f52d17e43..85480dfd7bbb0440579ed9e3f1617a3918bb6555 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 88b810a9d49a662d8831d934162c61d20b106dbd..a9e8591377deb827667086224eb31043273f9d6a 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 bf96b19455fb280132238e85dc7b757282ea7785..cb1c0d36b6e61575f30df40c79b2868bc13820df 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 d08c518ee30e92e5a2e65a56bc6dba5ab5e1043d..99a4605f590c5ae04a2cfda3aa9f246f489c1064 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 1and binary forms, 
index d84f02d05d0917c08c8ce4cff550fe44eb2808bf..a58526ab5bb259409f98398d65e34dc681d05120 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 fc2a1d8c48002d4d4db8581eecd8b388cefbc758..5b41e11bd356cedd4a306c25bd0a5d7dc7d058b2 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 a08855b479e82f4903771879b92c6c038f555e0d..df38c5a058deae2cab43c3ff22c4687ad110d8b2 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 33373c2e127c9b271afb5a57f4c84491b7357119..1e22a363b77d51c3010c3d8cd613a1957c06290e 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 a8cf4094181bd70c7119beaaec573554b1398998..0b3c6f43b73577212db5f12c7047487dce4ea64a 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 e9ed9917da04a11672cbbd6e168a1e16585bc12c..fe193a7ed919aa7c11937990fddbebf22231d3f0 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 ce0c9069c917e4fb71f6c958a804f27c847882ca..beed2d6b2c172bd30589605bc20d68f4911eb4eb 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 efd29dcf57823c1aafdd29629206a075376a40ee..5e6fff346956c2caf1795b7275e1c73bc9a9ad96 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 84a34690aaa154967d7d30d094db1b26392741ba..22bd50696060df85200a21f2dfd8bb43a9321f77 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 162e3c8f06dda6a4b601d336bc1179f7c7665932..08af0db0053597dda924bba21276ac1eddf525e2 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 a150fdab65994bd9092de0d15fe88037d6d683c5..cce7a2b8d572f75be5ef101e3e9f3690db3b8e5a 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 786ffcf9058ddf5d76da5a7038d457a37670e31e..b1ad2dcfc3c6fa31a13d33fcea8002ee3d68bfe2 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 2d52576838047bae9ade9e0333f8b850b59af0a5..a42116cb9cb3a968a69466e9f871b2423a282d5a 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 028fd59f07b6af0b8fe8da8ac8b596436509eebc..02d3cc27b5cc7cd907325131f3193ddb9a8e9054 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 54fff9db910b9ca23d81b2e7695c50b366c06f92..825cfa19bb7d707cede89eb6a136d2f28db1e891 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 9294ff72f38e4f052c5ef8d2981fcee7b5889a9c..ffae491d1eb375204352b3e0641fdef4cb4439fd 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 4a36e079fa3425159130d9e7896993f82772e666..ced30e4be91fdeb802f7ee0cf59fdfab3256e8da 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 5b2b76a47f580bee3e63330bd20b80961b37a0d1..fdfaf2d8beab718f876336569ba1af9a81264a7b 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 e64d114313043759adf2a5548b55704b46dbac7d..b812e11ff252debe9ec7a265dee6d4d0679d882b 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 665c808dc3924d18ebae0d1271065b3d8805bce8..6876930b32f6975edb152cb88e87f839b3ac7d8a 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 5ae2b375a095b9695f5f979f84afcb220266349e..698244193b73af1aea0636da8c53fe94999a5d21 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 0f0862733947939483f77a8ab85b72115f674b14..f96da3079d775a7df2408119305ef1f443ba8389 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 1ad737d3882e0036a0d7132028d645cdd1f3e317..f2f13fa9be435a92b2b53380a91054f9c813e998 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 6a2382de8de2e332eef212912d52249e5e5cffcd..c1417db2ea60de35847c2a7c29d71c5f4398e3b8 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 56504eb6de65be74b827519ccc0c47532816bbe0..6d09955375cd0f2284b91913e6f895760816a406 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 6801d59aefb4dde8138558a581b814b065a2844e..724d418a5d5c41825426697b957625a767f60669 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 6a5665d58e454bed83b98c830d0e4016fe6916ae..e7bd468933f3841b3db15beba364c6883f0fdc6c 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 83b20704a642eb0dbdfdf85d13441bdddda509a1..177cde371e435be3717a1f6c2d1941b54da68ac9 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 049c0bb55398a206bbec2a1264bfa0c9da1dda61..0986dedc27c34fa1e987ccec9c2d4da3b1879561 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 63fa7b3eb9f7f07f278a818cc78bd003314465da..78228de9c207bb7de79800a9f9cb7bdedd006f94 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 11fff44343ddc245034aea92107724220cf60f4c..a2ee386b9cb3b82628a001e9f0b25cb8b77b6571 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 741c2f3ff46b3c4425e3c5ad44aec40a7f8b720e..be8499620bc9065dc5d2293f2cdbe141c49cc8a2 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 5d57e026dcf6d8eb43d59a9a162f24dd6ef7cc71..5b8d920a2669d251bf9ebf8a80ef0ba73435f5f3 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 c80293d4a44e1fd1da3e594151a00fcf09225920..8013ab645dd05534a4671e514abda9d4abf2e4a4 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 d38c29c656bb7e64aa74ed89d62af93bf82f51f1..1f9a2a1769cecfe45b225c670774f6821ecfa842 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 6b9519bcc25d306f5699ff3af05efc346462630a..1738dab73a3daa4287548f0ab305edf3cd4589ec 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 3db5fbf3f1a9c3f010639b0a42c83ccb1eee4313..ab161011ff8fa5584c28516431b7c2b2a45337f0 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,