~upstart-devel/upstart/0.9

« back to all changes in this revision

Viewing changes to util/initctl.h

  • Committer: James Hunt
  • Date: 2011-03-07 10:05:41 UTC
  • Revision ID: james.hunt@ubuntu.com-20110307100541-z0xw0fzo8svumu0k
* scripts/init-checkconf.sh:
  - cleanup(): Make use of $upstart_pid.
  - main(): disown $upstart_pid to stop newer bash versions
    displaying changed child process status.
* util/initctl.h: Improved comments for CheckConfigData.

Show diffs side-by-side

added added

removed removed

Lines of Context:
340
340
/**
341
341
 * CheckConfigData:
342
342
 *
343
 
 * @job_class_hash: List of all job class (.conf files)
 
343
 * @job_class_hash: Job classes (.conf files)
344
344
 *   currently installed,
345
 
 * @event_hash: List of all events that are documented
346
 
 *   as being emitted.
 
345
 * @event_hash: Events that are documented
 
346
 *   as being emitted,
 
347
 * @ignored_events_hash: Rvents we wish to ignore.
347
348
 *
348
349
 * Notes:
349
350
 *
352
353
 *
353
354
 * Keys of @event_hash are event names and values are of type
354
355
 * NihListEntry holding the event name as a string.
 
356
 *
 
357
 * Keys of @ignored_events_hash are event names and values are of type
 
358
 * NihListEntry holding the event name as a string.
355
359
 **/
356
360
typedef struct check_config_data {
357
361
        NihHash *job_class_hash;