diff options
author | Michael I. Bushnell <mib@gnu.org> | 1996-05-06 17:52:03 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1996-05-06 17:52:03 +0000 |
commit | 36c3f2e460e5c2cb13f7128efc5920d737348bf2 (patch) | |
tree | d0f54c90057edf40e9d2068b5dbd5debc9d70b08 /hurd | |
parent | 60aebc02179a2a0ddc0efe329170cbb8118aac83 (diff) |
Initial revision
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/startup_notify.defs | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/hurd/startup_notify.defs b/hurd/startup_notify.defs new file mode 100644 index 00000000..b7924817 --- /dev/null +++ b/hurd/startup_notify.defs @@ -0,0 +1,36 @@ +/* Callbacks issued by startup server + Copyright (C) 1996 Free Software Foundation + +This file is part of the GNU Hurd. + +The GNU Hurd is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2, or (at your option) +any later version. + +The GNU Hurd is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with the GNU Hurd; see the file COPYING. If not, write to +the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +/* Written by Michael I. Bushnell. */ + +subsystem startup_notify 29000; + +#include <hurd/hurd_types.defs> + +#ifdef STARTUP_NOTIFY_IMPORTS +STARTUP_NOTIFY_IMPORTS +#endif + +/* The system is going down; the recipient of this call is receiving + the notification previously requested by + startup_request_notification. */ +routine startup_dosync ( + notify_port: mach_port_t); + + |