34 lines
903 B
C#
34 lines
903 B
C#
/*
|
|
* LargeArray.NameGeneratorLock.cs
|
|
*
|
|
* Copyright © 2009
|
|
* Diversified Technical Systems, Inc.
|
|
* All Rights Reserved
|
|
*/
|
|
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.ObjectModel;
|
|
using System.Linq;
|
|
using System.Runtime.ConstrainedExecution;
|
|
using System.Runtime.InteropServices;
|
|
using System.Text;
|
|
using DTS.Common.Utilities;
|
|
using DTS.Common.Utilities.DotNetProgrammingConstructs;
|
|
|
|
namespace DTS.Common.Utilities.IO.MemoryMap
|
|
{
|
|
// *** see LargeArray.cs ***
|
|
public partial class LargeArray<T>
|
|
{
|
|
/// <summary>
|
|
/// A class intended to serve as a locking object for all MegArrays, so they don't
|
|
/// try to use the same seed number for generating their respective scratch files.
|
|
/// </summary>
|
|
protected class NameGeneratorLock
|
|
{
|
|
}
|
|
}
|
|
}
|