Add license preamble to debugger source files
authorIgor Kulaychuk <i.kulaychuk@samsung.com>
Tue, 10 Oct 2017 18:49:55 +0000 (21:49 +0300)
committerIgor Kulaychuk <i.kulaychuk@samsung.com>
Mon, 13 Nov 2017 19:22:40 +0000 (22:22 +0300)
22 files changed:
src/debug/netcoredbg/breakpoints.cpp
src/debug/netcoredbg/commands.cpp
src/debug/netcoredbg/common.h
src/debug/netcoredbg/cputil.h
src/debug/netcoredbg/debugger.h
src/debug/netcoredbg/expr.cpp
src/debug/netcoredbg/frames.cpp
src/debug/netcoredbg/jmc.cpp
src/debug/netcoredbg/main.cpp
src/debug/netcoredbg/modules.cpp
src/debug/netcoredbg/modules.h
src/debug/netcoredbg/platform.cpp
src/debug/netcoredbg/platform.h
src/debug/netcoredbg/symbolreader.cpp
src/debug/netcoredbg/symbolreader.h
src/debug/netcoredbg/torelease.h
src/debug/netcoredbg/typeprinter.cpp
src/debug/netcoredbg/typeprinter.h
src/debug/netcoredbg/valueprint.cpp
src/debug/netcoredbg/valuewalk.cpp
src/debug/netcoredbg/valuewalk.h
src/debug/netcoredbg/varobj.cpp

index c907073..463b991 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index 9ba641c..07728c4 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #define UNICODE
 #include "common.h"
 
index eae704c..d86163e 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 // Includes for CoreCLR API and types
 
 #include <windows.h>
index 76490ea..d9c6c13 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 static inline std::string to_utf8(const WCHAR *wstr, int len = -1)
 {
     if (len == -1)
index fa1d140..9013edb 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 class ManagedCallback;
 
 class Debugger
index 0e68062..941a27f 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index 4873a9d..95f3f21 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index 6799111..f370d9a 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <string>
index ebbd927..1cf7d4e 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index b3cfd21..98752e2 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index bf0144c..540fd76 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 namespace Modules
 {
 
index 35bb044..1f06acb 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include <string>
 #include <cstring>
 #include <set>
index f8594a5..750e65b 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 unsigned long OSPageSize();
 void AddFilesFromDirectoryToTpaList(const std::string &directory, std::string &tpaList);
 std::string GetExeAbsPath();
index a06cb20..cb917b7 100644 (file)
@@ -1,3 +1,9 @@
+// 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.
+
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+
 #include "common.h"
 
 #include <string>
index a375c6e..eedc726 100644 (file)
@@ -1,3 +1,9 @@
+// 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.
+
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+
 static const char *SymbolReaderDllName = "SOS.NETCore";
 static const char *SymbolReaderClassName = "SOS.SymbolReader";
 
index 771c0bc..8a658bf 100644 (file)
@@ -1,3 +1,9 @@
+// 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.
+
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+
 // This class acts a smart pointer which calls the Release method on any object
 // you place in it when the ToRelease class falls out of scope.  You may use it
 // just like you would a standard pointer to a COM object (including if (foo),
index aadd449..6715ba9 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index 57de9ae..604a758 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 class TypePrinter
 {
     static HRESULT NameForTypeDef(mdTypeDef tkTypeDef, IMetaDataImport *pImport, std::string &mdName,
index dc9be00..38fdb70 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index a9c41c3..bd54c3c 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>
index a1eee9a..64f0614 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 typedef std::function<HRESULT(mdMethodDef,ICorDebugModule*,ICorDebugType*,ICorDebugValue*,bool,const std::string&)> WalkMembersCallback;
 typedef std::function<HRESULT(ICorDebugILFrame*,ICorDebugValue*,const std::string&)> WalkStackVarsCallback;
 HRESULT WalkMembers(ICorDebugValue *pValue, ICorDebugThread *pThread, ICorDebugILFrame *pILFrame, WalkMembersCallback cb);
index 6c0c4ba..5d0b5b0 100644 (file)
@@ -1,3 +1,7 @@
+// Copyright (c) 2017 Samsung Electronics Co., LTD
+// Distributed under the MIT License.
+// See the LICENSE file in the project root for more information.
+
 #include "common.h"
 
 #include <sstream>