I'm having trouble using the MemoryMappedFile using the following code.

    static int NoOfChannels = 1164;
    static int NoOfRows = 64;
    static int N = NoOfChannels * NoOfRows;
    static int NoOfProjections = 10000;
    static long val = (long)NoOfChannels * NoOfRows * NoOfProjections * 4;
    static FileStream stream = null;

    stream = new FileStream("D:\\TEST.DAT", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite, 10);
        stream.SetLength(val);

MemoryMappedFile m = MemoryMappedFile.CreateFromFile(stream, "XXXX", stream.Length,    MemoryMappedFileAccess.ReadWrite, null, HandleInheritability.None, true);

        for (int i = 0; i < NoOfProjections; i++)
        {
            long Pos = (long)(i * N * 4);

            MemoryMappedViewStream s = m.CreateViewStream(Pos, N * 4);
        }

Using this code result in an error UnknownError_Num 8. If I limit NoOfChannels to a smaller value, there is no error. I have 32GB in my system, so there should be no problem allocating this amopunt of data.

Has someone every experienced such a behaviour?

Thanks Martin

link|improve this question

15% accept rate
It is an awful lot of streams (handles) open at once. – Henk Holterman Jul 5 '11 at 17:02
You are surely right, but why does it work when I do a read in the data? – msedi Jul 5 '11 at 17:18
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.