ChangeLog 1.4 KB

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