ChangeLog 1.9 KB

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