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