~ubuntu-branches/debian/experimental/upstart/experimental

« back to all changes in this revision

Viewing changes to init/process.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Biebl
  • Date: 2007-10-22 07:09:12 UTC
  • mfrom: (1.2.1 upstream) (16.1.9 feisty)
  • Revision ID: james.westby@ubuntu.com-20071022070912-4cybewh6m1vwk09p
Tags: 0.3.9-1
* New upstream release.
* debian/watch
  - Find the latest tarball by parsing the download.html page.
* debian/upstart-compat-sysv.preinst
  - Do not parse /var/lib/dpkg/status directly but use dpkg-query instead.
* debian/control
  - Use the new "Homepage:" field to specify the upstream URL.
  - Drop versioned Build-Depends on dpkg-dev as the version in etch is
    recent enough.
  - Use quilt instead of dpatch for the patch management. Update the
    Build-Depends accordingly.
* debian/rules
  - Do not ignore "make clean" errors.
  - Include quilt.make which provides the patch and unpatch target.
* debian/README.Debian
  - Update the FAQ with regard to boot message logging. Closes: #426598
  - Add some notes that initramfs generators other than initramfs-tools can
    cause problems. Closes: #410836

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* upstart
2
2
 *
3
 
 * Copyright © 2006 Canonical Ltd.
 
3
 * Copyright © 2007 Canonical Ltd.
4
4
 * Author: Scott James Remnant <scott@ubuntu.com>.
5
5
 *
6
6
 * This program is free software; you can redistribute it and/or modify
30
30
 
31
31
NIH_BEGIN_EXTERN
32
32
 
33
 
pid_t process_spawn         (Job *job, char * const argv[]);
34
 
int   process_kill          (Job *job, pid_t pid, int force);
 
33
pid_t process_spawn         (Job *job, char * const argv[])
 
34
        __attribute__ ((warn_unused_result));
 
35
int   process_kill          (Job *job, pid_t pid, int force)
 
36
        __attribute__ ((warn_unused_result));
35
37
 
36
 
int   process_setup_console (Job *job, ConsoleType type);
 
38
int   process_setup_console (Job *job, ConsoleType type)
 
39
        __attribute__ ((warn_unused_result));
37
40
 
38
41
NIH_END_EXTERN
39
42