2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Core / System.IO.MemoryMappedFiles / ChangeLog
blob538dabde21ba1f6c3e1a73a2db65b3cb7888eb07
1 2010-05-25  Jb Evain  <jbevain@novell.com>
3         * MemoryMappedFileSecurity.cs: ifdef for NET_4_0.
5 2010-04-15  Jb Evain  <jbevain@novell.com>
7         * MemoryMappedFile.cs: implement CreateOrOpen.
9 2010-04-14  Jb Evain  <jbevain@novell.com>
11         * MemoryMappedViewAccessor.cs
12         * MemoryMappedFile.cs
13         * MemoryMappedViewStream.cs:
14                 Properly retrieve the size of the mmapped file. Fixes the
15                 unit tests.
17 2009-12-14  Miguel de Icaza  <miguel@novell.com>
19         * MemoryMappedFile.cs: Make this by default use the native
20         interface (Mono.Unix.Native.Syscall) to map files and only support
21         the FileStream.Handle when the user explicitly uses this API.
23         The reason is that currently the code depends on the io-layer
24         keeping parity between our handles and Unix file descriptors, this
25         removes this dependency for most cases. 
27 2009-12-13  Miguel de Icaza  <miguel@novell.com>
29         * MemoryMappedViewAccessor.cs: Derive from
30         UnmanagedMemoryAccessor, remove explicit IDisposable inheritance.
31         (CreatePosix): Call Initialize on the base class to initialize. 
32         (Dispose): Kill methods. 
33         (Flush): Add.
34         (MapPosix): no need to return out mmap_size, it is always size.
36         * MemoryMappedFile.cs: Add FlushPosix.
38         * MemoryMappedViewStream.cs: Update API.
39         
40 2009-12-10  Miguel de Icaza  <miguel@novell.com>
42         * MemoryMappedFile.cs: Updated to the new Beta API, fill in some
43         blanks, map some new flags, obey some settings, throw some
44         exceptions. 
46 2009-09-05  Zoltan Varga  <vargaz@gmail.com>
48         * MemoryMappedViewAccessor.cs: New net 4.0 class.
50         * MemoryMappedViewStream.cs: Move the mmap code to MemoryMappedFile.cs,
51         so it can be used by ViewAccessor as well.
53 2009-08-30  Zoltan Varga  <vargaz@gmail.com>
55         * MemoryMappedViewStream.cs: Implement this for unix.
57 2009-08-29  Zoltan Varga  <vargaz@gmail.com>
59         * MemoryMapped*.cs: New files, stubs for the new MemoryMappedFile
60         apis in net 4.0.