ChangeLog 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. 2010-04-15 Jb Evain <[email protected]>
  2. * MemoryMappedFile.cs: implement CreateOrOpen.
  3. 2010-04-14 Jb Evain <[email protected]>
  4. * MemoryMappedViewAccessor.cs
  5. * MemoryMappedFile.cs
  6. * MemoryMappedViewStream.cs:
  7. Properly retrieve the size of the mmapped file. Fixes the
  8. unit tests.
  9. 2009-12-14 Miguel de Icaza <[email protected]>
  10. * MemoryMappedFile.cs: Make this by default use the native
  11. interface (Mono.Unix.Native.Syscall) to map files and only support
  12. the FileStream.Handle when the user explicitly uses this API.
  13. The reason is that currently the code depends on the io-layer
  14. keeping parity between our handles and Unix file descriptors, this
  15. removes this dependency for most cases.
  16. 2009-12-13 Miguel de Icaza <[email protected]>
  17. * MemoryMappedViewAccessor.cs: Derive from
  18. UnmanagedMemoryAccessor, remove explicit IDisposable inheritance.
  19. (CreatePosix): Call Initialize on the base class to initialize.
  20. (Dispose): Kill methods.
  21. (Flush): Add.
  22. (MapPosix): no need to return out mmap_size, it is always size.
  23. * MemoryMappedFile.cs: Add FlushPosix.
  24. * MemoryMappedViewStream.cs: Update API.
  25. 2009-12-10 Miguel de Icaza <[email protected]>
  26. * MemoryMappedFile.cs: Updated to the new Beta API, fill in some
  27. blanks, map some new flags, obey some settings, throw some
  28. exceptions.
  29. 2009-09-05 Zoltan Varga <[email protected]>
  30. * MemoryMappedViewAccessor.cs: New net 4.0 class.
  31. * MemoryMappedViewStream.cs: Move the mmap code to MemoryMappedFile.cs,
  32. so it can be used by ViewAccessor as well.
  33. 2009-08-30 Zoltan Varga <[email protected]>
  34. * MemoryMappedViewStream.cs: Implement this for unix.
  35. 2009-08-29 Zoltan Varga <[email protected]>
  36. * MemoryMapped*.cs: New files, stubs for the new MemoryMappedFile
  37. apis in net 4.0.