Skip to content

Commit

Permalink
Namespace LockFreeDoublyLinkedList → LockFreeDoublyLinkedLists
Browse files Browse the repository at this point in the history
* LockFreeDoublyLinkedListExtensions → LockFreeDoublyLinkedListAdditions
* Version++ (Incompatible change)
  • Loading branch information
Christoph Müller committed May 4, 2016
1 parent 9490f6e commit 648b22d
Show file tree
Hide file tree
Showing 21 changed files with 31 additions and 27 deletions.
4 changes: 2 additions & 2 deletions Source/LockFreeDoublyLinkedList.sln
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Express 2013 for Windows Desktop
VisualStudioVersion = 12.0.31101.0
# Visual Studio 15
VisualStudioVersion = 15.0.25123.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LockFreeDoublyLinkedList", "LockFreeDoublyLinkedList\LockFreeDoublyLinkedList.csproj", "{71B3DF8B-30A9-4D31-B0B4-8BF78B178BE2}"
EndProject
Expand Down
10 changes: 7 additions & 3 deletions Source/LockFreeDoublyLinkedList.sln.DotSettings
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
</Entry.SortBy>
</Entry>
<Entry DisplayName="All other members" />
<Entry DisplayName="Test Methods" Priority="100">
<Entry Priority="100" DisplayName="Test Methods">
<Entry.Match>
<And>
<Kind Is="Method" />
Expand Down Expand Up @@ -96,7 +96,7 @@
</Entry.Match>
</Entry>
<Entry DisplayName="All other members" />
<Entry DisplayName="Test Methods" Priority="100">
<Entry Priority="100" DisplayName="Test Methods">
<Entry.Match>
<And>
<Kind Is="Method" />
Expand Down Expand Up @@ -722,4 +722,8 @@ limitations under the License.</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/WebNaming/UserRules/=ASP_005FTAG_005FPREFIX/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=NAMESPACE_005FALIAS/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FFIELD/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /&gt;</s:String>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FRESOURCE/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /&gt;</s:String></wpf:ResourceDictionary>
<s:String x:Key="/Default/CodeStyle/Naming/XamlNaming/UserRules/=XAML_005FRESOURCE/@EntryIndexedValue">&lt;Policy Inspect="True" Prefix="" Suffix="" Style="AaBb" /&gt;</s:String>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAddAccessorOwnerDeclarationBracesMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EAlwaysTreatStructAsNotReorderableMigration/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateBlankLinesAroundFieldToBlankLinesAroundProperty/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/Environment/SettingsMigration/IsMigratorApplied/=JetBrains_002EReSharper_002EPsi_002ECSharp_002ECodeStyle_002ESettingsUpgrade_002EMigrateThisQualifierSettings/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
using System.Linq;
using System.Threading.Tasks;

namespace LockFreeDoublyLinkedList
namespace LockFreeDoublyLinkedLists
{
/// <summary>
/// A lock free doubly linked list for high concurrency.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
using System.Linq;
using System.Threading.Tasks;

namespace LockFreeDoublyLinkedList
namespace LockFreeDoublyLinkedLists
{
/// <summary>
/// A node of a LockFreeDoublyLinkedList instance.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace LockFreeDoublyLinkedList
namespace LockFreeDoublyLinkedLists
{
/// <summary>
/// Provides an implementation of a LockFree DoublyLinkedList.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ProjectGuid>{71B3DF8B-30A9-4D31-B0B4-8BF78B178BE2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LockFreeDoublyLinkedList</RootNamespace>
<RootNamespace>LockFreeDoublyLinkedLists</RootNamespace>
<AssemblyName>LockFreeDoublyLinkedList</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
Expand Down Expand Up @@ -46,7 +46,7 @@
<Compile Include="ILockFreeDoublyLinkedList.cs" />
<Compile Include="ILockFreeDoublyLinkedListNode.cs" />
<Compile Include="LockFreeDoublyLinkedList.cs" />
<Compile Include="LockFreeDoublyLinkedListExtensions.cs" />
<Compile Include="LockFreeDoublyLinkedListAdditions.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="ThreadingAdditions.cs" />
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
using System.Linq;
using System.Threading.Tasks;

namespace LockFreeDoublyLinkedList
namespace LockFreeDoublyLinkedLists
{
/// <summary>
/// Extension methods for the class
/// <see cref="ILockFreeDoublyLinkedList{T}"/>
/// </summary>
public static class LockFreeDoublyLinkedListExtensions
public static class LockFreeDoublyLinkedListAdditions
{
/// <summary>
/// Exchanges the value of a LockFreeLinkedList node
Expand Down
2 changes: 1 addition & 1 deletion Source/LockFreeDoublyLinkedList/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@
// Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
// übernehmen, indem Sie "*" eingeben:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.0.0.0")]
[assembly: AssemblyVersion("3.0.0.0")]
2 changes: 1 addition & 1 deletion Source/LockFreeDoublyLinkedList/ThreadingAdditions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
using System.Threading;
using System.Threading.Tasks;

namespace LockFreeDoublyLinkedList
namespace LockFreeDoublyLinkedLists
{
internal static class ThreadingAdditions
{
Expand Down
4 changes: 2 additions & 2 deletions Source/Test/Tests/Test001.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;
using Test.Tests.Test001_;
using Test.Tests.Test001_.OperationResultComparers;
using Test.Tests.Test001_.Operations;
Expand Down Expand Up @@ -392,7 +392,7 @@ private IEnumerable<List<operationExecutionInfo>> permutations(
runOnLfdll(TestIterationParameters parameters)
{
ILockFreeDoublyLinkedList<ListItemData> lfdll
= LockFreeDoublyLinkedList.LockFreeDoublyLinkedList.
= LockFreeDoublyLinkedLists.LockFreeDoublyLinkedList.
Create<ListItemData>();

Random initializationRandom
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/ExecutionState.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;
using Test.Tests.Test001_.Operations;

namespace Test.Tests.Test001_.OperationResultComparers
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/InsertAfter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/InsertAfterIf.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/InsertBefore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/Next.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/PopRightNode.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/Previous.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/PushLeft.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down
2 changes: 1 addition & 1 deletion Source/Test/Tests/Test001_/Operations/PushRight.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using LockFreeDoublyLinkedList;
using LockFreeDoublyLinkedLists;

namespace Test.Tests.Test001_.Operations
{
Expand Down

0 comments on commit 648b22d

Please sign in to comment.