Skip to content

Releases: Azure/m

Fix win32 platform race with filesystem::load, add m/pil

19 Jul 03:10
Compare
Choose a tag to compare

This release adds the Platform Isolation Library, which adds an abstraction layer between code and the underlying platform.

The initial release focuses on the Windows system registry, so it's rather Windows focused but in the future it will include filesystem features and be more platform neutral.

Also included is a fix for a race with m::filesystem::load() on win32 when a file changes size while loading.

Make set thread description adaptive to old Windows versions

27 Jun 00:07
Compare
Choose a tag to compare

Older Windows versions that didn't have the SetThreadDescription and GetThreadDescription APIs exposed by kernel32 / WindowsBase will block clients that use m::thread_description from running on, for example, Windows Server 2016 which is a requirement.

This release makes thread description code adaptive.

Make filesystem watcher compatible with Windows Server 2016

25 Jun 20:43
Compare
Choose a tag to compare

Remove the use of ReadDirectoryChangesExW to allow the filesystem watcher to load on Windows Server 2016, an unfortunately critical scenario.

Fix build of vcpkg based project

17 Jun 17:21
Compare
Choose a tag to compare
Pre-release

Fix how an ADO based project might build this project if it were released and consumed via vcpkg.

In theory. :-)

There needs to be some way to test this prior to making a release, but as far as I can tell, the only way to get a package consumable from ADO is to create a release / pre-release.

Quick update to fix m_googletest to include(GoogleTest)

17 Jun 00:30
Compare
Choose a tag to compare
v0.0.25

Add "include(GoogleTest)" to CMakeLists.txt for the m_googletest library

Stress tests added for filesystem monitor

16 Jun 23:05
Compare
Choose a tag to compare
v0.0.24

Start stress testing on filesystem monitors

Add API for thread description management to integrate into threadpool tasks

14 Jun 02:14
Compare
Choose a tag to compare

Add thread description management api

  • needs std::vformat integration

Move m::dbg_format support (m/debugging) out of windows-only

Introduing Win32 Filesystem Monitors etc

13 Jun 03:47
Compare
Choose a tag to compare

Add m::filesystem::monitor for win32 filesystem change monitoring

also m::threadpool for beginning access to the win32 threadpool, currently to create timers, non-periodic.

Linux support is mostly stubbed out right now. Will get to it later.

There is inode monitoring support in Linux (all? some?) but will start with periodic monitoring. The win32 case needs to handle periodic checksum based monitoring also which is not there.

If directory is not present, it's up to the client to decide how long to wait before trying again.

Really, lots of content.

v0.0.21

26 May 03:00
Compare
Choose a tag to compare
v0.0.21 Pre-release
Pre-release

Quick update to make m::rust::string_in easier to use as a non-template class

v0.0.20

26 May 00:38
Compare
Choose a tag to compare
v0.0.20 Pre-release
Pre-release

Adds new headers for assistance with interacting with Rust FFI libraries