ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Linux-Inotify2/Changes
Revision: 1.30
Committed: Sat Jul 31 11:47:05 2021 UTC (2 years, 11 months ago) by root
Branch: MAIN
CVS Tags: rel-2_3, HEAD
Changes since 1.29: +6 -0 lines
Log Message:
2.3

File Contents

# User Rev Content
1 root 1.1 Revision history for Linux::Inotify2
2    
3 root 1.11 TODO: document move/renaming issues for fullname
4     TODO: find_watchers($path), or maybe just ->watchers
5    
6 root 1.30 2.3 Sat Jul 31 13:45:51 CEST 2021
7     - store a filehandle internally so it gets perl's CLOEXEC flag as needed. also
8     gets rid of the destructor and the internal close function for added space
9     savings (reported by Eric Wong).
10     - add new ->fh accessor.
11    
12 root 1.29 2.2 Mon Dec 9 04:09:05 CET 2019
13 root 1.28 - define IN_EXCL_UNLINK to 0 if it is missing, for the benefit of
14     antique systems that lack this symbol.
15    
16 root 1.27 2.1 Fri Oct 26 03:16:03 CEST 2018
17     - damn, left debugging code not caught by tests (reported by losyme).
18    
19 root 1.26 2.0 Thu Oct 25 03:19:08 CEST 2018
20     - fix poll and read documentation w.r.t. errors - this changes the
21     documented API, but is how the module has always behaved.
22 root 1.25 - mention https://lwn.net/Articles/605128/ in the docs.
23 root 1.24 - new on_overflow callback, called for overflow events.
24     - new ->broadcast method that calls all watchers with some event.
25     - automatically broadcast overflow events to all watchers by default.
26     - read now returns all events (except ignored ones), not just ones
27     it has registered watchers for (e.g. overflow events).
28 root 1.19 - reduced dependencies (Mike Pomraning).
29 root 1.23 - add IN_EXCL_UNLINK flag.
30     - more efficient constant initialisation.
31 root 1.19
32 root 1.18 1.22 Tue Jun 14 08:34:38 CEST 2011
33     - use a more useful definition of IN_xxx methods - any bits, not
34     a match. (pointed out by Anatoliy Grishayev).
35     - slightly reworked the documentation.
36    
37 root 1.17 1.21 Mon Sep 21 10:07:07 CEST 2009
38     - fix a couple of typoes, as pointed out by Grant McLean.
39     - rely on common::sense for stricter namespace checking.
40    
41 root 1.16 1.2 Tue Oct 7 19:23:57 CEST 2008
42 root 1.14 - include IN_DELETE_SELF in events that cancel watchers, as
43     the kernel seems to handle it this way only.
44 root 1.15 - require sys/inotify.h to be installed, remove the local
45     copy (patch by Adrian Bunk).
46     - update examples.
47 root 1.14
48 root 1.13 1.1 Fri Sep 29 16:40:14 CEST 2006
49 root 1.12 - fixed formatting.
50 root 1.13 - add IN_MASK_ADD, IN_DONT_FOLLOW, IN_ONLYDIR.
51     - updated inotify.h from inotify-utils for wider architecture support.
52     - no internal changes.
53 root 1.12
54 root 1.10 1.01 Tue Dec 20 12:31:16 CET 2005
55     - more fixes by Andrejs Dubovskis:
56     - removed debugging code accidentally left in.
57     - streaming API didn't always return properly blessed objects.
58    
59 root 1.21 1.0 Mon Dec 19 17:48:01 CET 2005
60 root 1.9 - incorporated a major patch by Andrejs Dubovskis:
61     - added a non-callback interface to read events
62     - better error handling in non-blocking case.
63     - added test case.
64     - fix reading events leaking memory.
65    
66 root 1.8 0.8 Sun Nov 27 13:43:14 CET 2005
67 root 1.5 - improved documentation.
68 root 1.6 - added IN_MOVE_SELF.
69 root 1.8 - cancel events when receiving an IN_ONESHOT event.
70     - clarify documentation for ->cookie.
71 root 1.5
72     0.2 Tue Aug 23 04:27:31 CEST 2005
73 root 1.3 - poll now really returns the #events.
74     - handle multiple cancel's gracefully.
75     - auto-cancel watchers on IN_IGNORED and IN_UNMOUNT.
76 root 1.4 situation with IN_ONESHOT is unclear
77     (does have no effect on 2.6.13-rc6-git13).
78 root 1.3 - avoid race between canceled and newly-created watches.
79     - improved documentation.
80    
81 root 1.2 0.1 Mon Aug 22 12:05:15 CEST 2005
82 root 1.1 - original version, a Linux::AIO clone.