Skip to content

Releases: onox/inotify-ada

v2.0.1

30 Jul 07:34
v2.0.1
42f5ce8
Compare
Choose a tag to compare

Changes

  • Fix some compiler warning in example
  • Use compiler switches from Alire's configuration

v2.0.0

10 Jun 17:38
v2.0.0
482c5da
Compare
Choose a tag to compare

This release fixes the ability to remove watches from within an event handler and adds a function that returns the file descriptor of the instance. This can and must only be used for polling before reading and processing the events.

Breaking changes

Procedure Process_Events will no longer block indefinitely. Your application must now call it repeatedly. You can call the procedure in a simple while loop:

while Instance.Has_Watches loop
   Instance.Process_Events (Handle_Event'Access);
end loop;

Changes

  • Fix removing a watch from within an event handler
  • Add a function to get the file descriptor of an instance
  • Add pragma Preelaborable_Initialization to private types

v1.0.1

14 Dec 17:19
v1.0.1
983cd20
Compare
Choose a tag to compare

Changes

  • Use Pitchfork layout
  • Remove LDFLAGS and add uninstall command in Makefile
  • Subdirectories that are unreadable or are a symlink are ignored

v1.0.0

21 Sep 23:07
v1.0.0
dd0386d
Compare
Choose a tag to compare

First stable release.