summaryrefslogtreecommitdiffstats
path: root/generator/generator_events.ml
Commit message (Collapse)AuthorAgeFilesLines
* generator: Rename 'generator_*' as '*'.Richard W.M. Jones2012-09-021-42/+0
| | | | | | | | | This is a simple renaming of the files/modules. Note that in OCaml, module names are derived from filenames by capitalizing the first letter. Thus the old module names had the form "Generator_api_versions". The new modules names have the form "Api_versions".
* Add GUESTFS_EVENT_ENTER event.Richard W.M. Jones2011-08-261-0/+2
| | | | This event is generated whenever a libguestfs function is called.
* New event API (RHBZ#664558).Richard W.M. Jones2011-03-151-0/+40
This API allows more than one callback to be registered for each event, makes it possible to call the API from other languages, and allows [nearly all] log, debug and trace messages to be rerouted from stderr. An older version of this API was discussed on the mailing list here: https://www.redhat.com/archives/libguestfs/2010-December/msg00081.html https://www.redhat.com/archives/libguestfs/2011-January/msg00012.html This also updates guestfish to use the new API for its progress bars.