Variable: file-notify-descriptors

file-notify-descriptors is a variable defined in filenotify.el.gz.

Value

#s(hash-table size 65 test equal rehash-size 1.5 rehash-threshold 0.8125 data
	      ())

Documentation

Hash table for registered file notification descriptors.

A key in this hash table is the descriptor as returned from inotify, kqueue, gfilenotify, w32notify or a file name handler. The value in the hash table is a file-notify--watch struct.

Source Code

;; Defined in /usr/src/emacs/lisp/filenotify.el.gz
(defvar file-notify-descriptors (make-hash-table :test 'equal)
  "Hash table for registered file notification descriptors.
A key in this hash table is the descriptor as returned from
`inotify', `kqueue', `gfilenotify', `w32notify' or a file name
handler.  The value in the hash table is a `file-notify--watch'
struct.")