Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copyright headers #39

Merged
merged 2 commits into from
Aug 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#
# Merging from the command prompt will add diff markers to the files if there
# are conflicts (Merging from VS is not affected by the settings below, in VS
# the diff markers are never inserted). Diff markers may cause the following
# the diff markers are never inserted). Diff markers may cause the following
# file extensions to fail to load in VS. An alternative would be to treat
# these files as binary and thus will always conflict and require user
# intervention with every merge. To do so, just uncomment the entries below
Expand Down Expand Up @@ -46,9 +46,9 @@

###############################################################################
# diff behavior for common document formats
#
#
# Convert binary document formats to text before diffing them. This feature
# is only available from the command line. Turn it on by uncommenting the
# is only available from the command line. Turn it on by uncommenting the
# entries below.
###############################################################################
#*.doc diff=astextplain
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/HeapSegment.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

namespace MemorySnapshotAnalyzer.AbstractMemorySnapshot
{
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/IMemoryAccessor.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

namespace MemorySnapshotAnalyzer.AbstractMemorySnapshot
{
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/InvalidSnapshotFormatException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;

Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/MemorySnapshot.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;

Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/MemorySnapshotLoader.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

namespace MemorySnapshotAnalyzer.AbstractMemorySnapshot
{
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/MemoryView.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Runtime.InteropServices;
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/Native.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

namespace MemorySnapshotAnalyzer.AbstractMemorySnapshot
{
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/NativeWord.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;

Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/PointerInfo.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;

Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/ReferenceClassifierFactory.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System.Collections.Generic;

Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/SegmentedHeap.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/TraceableHeap.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System.Collections.Generic;

Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/TypeSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion AbstractMemorySnapshot/TypeSystem.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/Backtracer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/GroupingBacktracer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/HeapDom.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/IBacktracer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System.Collections.Generic;

Expand Down
7 changes: 6 additions & 1 deletion Analysis/IRootSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;

Expand Down
7 changes: 6 additions & 1 deletion Analysis/RootSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/SingletonRootSet.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;

Expand Down
7 changes: 6 additions & 1 deletion Analysis/StitchedTraceableHeap.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/StitchedTypeSystem.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion Analysis/TracedHeap.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System;
Expand Down
2 changes: 1 addition & 1 deletion CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,4 @@ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.ht
[homepage]: https://www.contributor-covenant.org

For answers to common questions about this code of conduct, see
https://www.contributor-covenant.org/faq
https://www.contributor-covenant.org/faq
7 changes: 6 additions & 1 deletion CommandInfrastructure/Command.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using MemorySnapshotAnalyzer.Analysis;
Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/CommandException.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;

Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/CommandLine.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

namespace MemorySnapshotAnalyzer.CommandInfrastructure
{
Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/CommandLineArgument.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using System;
Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/CommandLineArgumentType.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

namespace MemorySnapshotAnalyzer.CommandInfrastructure
{
Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/CommandLineParser.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/CommandLineTokenizer.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System.Text;

Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/ConsoleOutput.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using System;
using System.Collections.Generic;
Expand Down
7 changes: 6 additions & 1 deletion CommandInfrastructure/Context.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
// Copyright(c) Meta Platforms, Inc. and affiliates.
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/

using MemorySnapshotAnalyzer.AbstractMemorySnapshot;
using MemorySnapshotAnalyzer.Analysis;
Expand Down
Loading