summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--LICENSE-MIT3
-rw-r--r--examples/amqp_bind.c3
-rw-r--r--examples/amqp_consumer.c3
-rw-r--r--examples/amqp_exchange_declare.c3
-rw-r--r--examples/amqp_listen.c3
-rw-r--r--examples/amqp_listenq.c3
-rw-r--r--examples/amqp_producer.c3
-rw-r--r--examples/amqp_rpc_sendstring_client.c3
-rw-r--r--examples/amqp_sendstring.c3
-rw-r--r--examples/amqp_unbind.c3
-rw-r--r--examples/unix/platform_utils.c3
-rw-r--r--examples/utils.c3
-rw-r--r--examples/utils.h3
-rw-r--r--examples/win32/platform_utils.c3
-rw-r--r--librabbitmq/amqp.h3
-rw-r--r--librabbitmq/amqp_api.c3
-rw-r--r--librabbitmq/amqp_connection.c3
-rw-r--r--librabbitmq/amqp_framing.c3
-rw-r--r--librabbitmq/amqp_framing.h3
-rw-r--r--librabbitmq/amqp_mem.c3
-rw-r--r--librabbitmq/amqp_private.h3
-rw-r--r--librabbitmq/amqp_socket.c3
-rw-r--r--librabbitmq/amqp_table.c3
-rw-r--r--librabbitmq/amqp_url.c3
-rw-r--r--librabbitmq/codegen.py9
-rw-r--r--librabbitmq/unix/socket.c3
-rw-r--r--librabbitmq/unix/socket.h3
-rw-r--r--librabbitmq/win32/socket.c3
-rw-r--r--librabbitmq/win32/socket.h3
-rw-r--r--tests/test_parse_url.c3
-rw-r--r--tests/test_tables.c3
-rw-r--r--tools/common.c3
-rw-r--r--tools/common.h3
-rw-r--r--tools/consume.c3
-rw-r--r--tools/declare_queue.c3
-rw-r--r--tools/delete_queue.c3
-rw-r--r--tools/get.c3
-rw-r--r--tools/publish.c3
-rw-r--r--tools/unix/process.c3
-rw-r--r--tools/unix/process.h3
-rw-r--r--tools/win32/compat.c3
-rw-r--r--tools/win32/compat.h3
-rw-r--r--tools/win32/process.c3
-rw-r--r--tools/win32/process.h3
44 files changed, 138 insertions, 0 deletions
diff --git a/LICENSE-MIT b/LICENSE-MIT
index 486e6e0..5c7630d 100644
--- a/LICENSE-MIT
+++ b/LICENSE-MIT
@@ -1,3 +1,6 @@
+Portions created by Alan Antonuk are Copyright (c) 2012-2013
+Alan Antonuk. All Rights Reserved.
+
Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
All Rights Reserved.
diff --git a/examples/amqp_bind.c b/examples/amqp_bind.c
index 3c9a863..b778d25 100644
--- a/examples/amqp_bind.c
+++ b/examples/amqp_bind.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_consumer.c b/examples/amqp_consumer.c
index aa63346..878bf29 100644
--- a/examples/amqp_consumer.c
+++ b/examples/amqp_consumer.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_exchange_declare.c b/examples/amqp_exchange_declare.c
index 749109c..a12319b 100644
--- a/examples/amqp_exchange_declare.c
+++ b/examples/amqp_exchange_declare.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_listen.c b/examples/amqp_listen.c
index 0347375..1e8fa79 100644
--- a/examples/amqp_listen.c
+++ b/examples/amqp_listen.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_listenq.c b/examples/amqp_listenq.c
index 762831d..8d9c3e3 100644
--- a/examples/amqp_listenq.c
+++ b/examples/amqp_listenq.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_producer.c b/examples/amqp_producer.c
index 4a1cd68..229756b 100644
--- a/examples/amqp_producer.c
+++ b/examples/amqp_producer.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_rpc_sendstring_client.c b/examples/amqp_rpc_sendstring_client.c
index 7914e2c..3357524 100644
--- a/examples/amqp_rpc_sendstring_client.c
+++ b/examples/amqp_rpc_sendstring_client.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_sendstring.c b/examples/amqp_sendstring.c
index f1456c9..424bd68 100644
--- a/examples/amqp_sendstring.c
+++ b/examples/amqp_sendstring.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/amqp_unbind.c b/examples/amqp_unbind.c
index 011f561..77ac724 100644
--- a/examples/amqp_unbind.c
+++ b/examples/amqp_unbind.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/unix/platform_utils.c b/examples/unix/platform_utils.c
index 6e356cb..777d56b 100644
--- a/examples/unix/platform_utils.c
+++ b/examples/unix/platform_utils.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/utils.c b/examples/utils.c
index 328a5e5..609c354 100644
--- a/examples/utils.c
+++ b/examples/utils.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/utils.h b/examples/utils.h
index f1d40b3..2e7b15f 100644
--- a/examples/utils.h
+++ b/examples/utils.h
@@ -6,6 +6,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/examples/win32/platform_utils.c b/examples/win32/platform_utils.c
index dff6243..afcbac8 100644
--- a/examples/win32/platform_utils.c
+++ b/examples/win32/platform_utils.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp.h b/librabbitmq/amqp.h
index c379125..121b1e3 100644
--- a/librabbitmq/amqp.h
+++ b/librabbitmq/amqp.h
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_api.c b/librabbitmq/amqp_api.c
index aacaf91..4a84bd3 100644
--- a/librabbitmq/amqp_api.c
+++ b/librabbitmq/amqp_api.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_connection.c b/librabbitmq/amqp_connection.c
index be7b1a8..b3196b1 100644
--- a/librabbitmq/amqp_connection.c
+++ b/librabbitmq/amqp_connection.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_framing.c b/librabbitmq/amqp_framing.c
index 6a5f9ee..22d97b8 100644
--- a/librabbitmq/amqp_framing.c
+++ b/librabbitmq/amqp_framing.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_framing.h b/librabbitmq/amqp_framing.h
index baf7771..f6dafe4 100644
--- a/librabbitmq/amqp_framing.h
+++ b/librabbitmq/amqp_framing.h
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_mem.c b/librabbitmq/amqp_mem.c
index 0f49df2..b0844e5 100644
--- a/librabbitmq/amqp_mem.c
+++ b/librabbitmq/amqp_mem.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_private.h b/librabbitmq/amqp_private.h
index 191155e..68239d1 100644
--- a/librabbitmq/amqp_private.h
+++ b/librabbitmq/amqp_private.h
@@ -6,6 +6,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_socket.c b/librabbitmq/amqp_socket.c
index 8454d45..5e7fa9c 100644
--- a/librabbitmq/amqp_socket.c
+++ b/librabbitmq/amqp_socket.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_table.c b/librabbitmq/amqp_table.c
index d9383d6..847770e 100644
--- a/librabbitmq/amqp_table.c
+++ b/librabbitmq/amqp_table.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/amqp_url.c b/librabbitmq/amqp_url.c
index d3e6724..277b5a6 100644
--- a/librabbitmq/amqp_url.c
+++ b/librabbitmq/amqp_url.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/codegen.py b/librabbitmq/codegen.py
index 5ae5a8f..fedc0fb 100644
--- a/librabbitmq/codegen.py
+++ b/librabbitmq/codegen.py
@@ -2,6 +2,9 @@
# ***** BEGIN LICENSE BLOCK *****
# Version: MIT
#
+# Portions created by Alan Antonuk are Copyright (c) 2012-2013
+# Alan Antonuk. All Rights Reserved.
+#
# Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
# All Rights Reserved.
#
@@ -340,6 +343,9 @@ def genErl(spec):
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
@@ -558,6 +564,9 @@ def genHrl(spec):
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/unix/socket.c b/librabbitmq/unix/socket.c
index 8c8ba6b..38064f1 100644
--- a/librabbitmq/unix/socket.c
+++ b/librabbitmq/unix/socket.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/unix/socket.h b/librabbitmq/unix/socket.h
index dd69e7b..1382ca3 100644
--- a/librabbitmq/unix/socket.h
+++ b/librabbitmq/unix/socket.h
@@ -6,6 +6,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/win32/socket.c b/librabbitmq/win32/socket.c
index f3c8fc7..a5d9454 100644
--- a/librabbitmq/win32/socket.c
+++ b/librabbitmq/win32/socket.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/librabbitmq/win32/socket.h b/librabbitmq/win32/socket.h
index 43e2a13..cea361d 100644
--- a/librabbitmq/win32/socket.h
+++ b/librabbitmq/win32/socket.h
@@ -6,6 +6,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tests/test_parse_url.c b/tests/test_parse_url.c
index 585514d..b816cd8 100644
--- a/tests/test_parse_url.c
+++ b/tests/test_parse_url.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tests/test_tables.c b/tests/test_tables.c
index 21e1c01..f7144dd 100644
--- a/tests/test_tables.c
+++ b/tests/test_tables.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/common.c b/tools/common.c
index bead858..7659521 100644
--- a/tools/common.c
+++ b/tools/common.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/common.h b/tools/common.h
index 77979ee..cc186ec 100644
--- a/tools/common.h
+++ b/tools/common.h
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/consume.c b/tools/consume.c
index c52311e..f4af4e2 100644
--- a/tools/consume.c
+++ b/tools/consume.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/declare_queue.c b/tools/declare_queue.c
index 25a94b1..57ba0a3 100644
--- a/tools/declare_queue.c
+++ b/tools/declare_queue.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/delete_queue.c b/tools/delete_queue.c
index 4ebbd94..4df0992 100644
--- a/tools/delete_queue.c
+++ b/tools/delete_queue.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/get.c b/tools/get.c
index bbcde72..357e66a 100644
--- a/tools/get.c
+++ b/tools/get.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/publish.c b/tools/publish.c
index 617b055..f9e4380 100644
--- a/tools/publish.c
+++ b/tools/publish.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/unix/process.c b/tools/unix/process.c
index 249fba3..9b25f4b 100644
--- a/tools/unix/process.c
+++ b/tools/unix/process.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/unix/process.h b/tools/unix/process.h
index a211f27..6f22404 100644
--- a/tools/unix/process.h
+++ b/tools/unix/process.h
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/win32/compat.c b/tools/win32/compat.c
index 7c7d97e..9a59175 100644
--- a/tools/win32/compat.c
+++ b/tools/win32/compat.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/win32/compat.h b/tools/win32/compat.h
index 74cacbe..d3c2b61 100644
--- a/tools/win32/compat.h
+++ b/tools/win32/compat.h
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/win32/process.c b/tools/win32/process.c
index 4d5270b..ec57db8 100644
--- a/tools/win32/process.c
+++ b/tools/win32/process.c
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*
diff --git a/tools/win32/process.h b/tools/win32/process.h
index 88f2c7a..2df5d5d 100644
--- a/tools/win32/process.h
+++ b/tools/win32/process.h
@@ -3,6 +3,9 @@
* ***** BEGIN LICENSE BLOCK *****
* Version: MIT
*
+ * Portions created by Alan Antonuk are Copyright (c) 2012-2013
+ * Alan Antonuk. All Rights Reserved.
+ *
* Portions created by VMware are Copyright (c) 2007-2012 VMware, Inc.
* All Rights Reserved.
*