summaryrefslogtreecommitdiff
path: root/hurd
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1994-05-04 05:01:08 +0000
committerRoland McGrath <roland@gnu.org>1994-05-04 05:01:08 +0000
commit0673f9490a03f66f99f9c5400bdc147ae0c59e9c (patch)
treee0cb3bb61acd996cc236aaec53030f62a7db324f /hurd
parent34495fca25d02504ac3bf420e97168b72b1d336c (diff)
Initial revision
Diffstat (limited to 'hurd')
-rw-r--r--hurd/msg_request.defs31
1 files changed, 31 insertions, 0 deletions
diff --git a/hurd/msg_request.defs b/hurd/msg_request.defs
new file mode 100644
index 00000000..1ca995d1
--- /dev/null
+++ b/hurd/msg_request.defs
@@ -0,0 +1,31 @@
+/* Reply side of miscellaneous callbacks from Hurd servers to their clients
+ Copyright (C) 1994 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. */
+
+subsystem msg_request 23000; /* must match msg.defs */
+
+type reply_port_t = polymorphic | polymorphic
+ ctype: mach_port_t;
+
+simpleroutine sig_post_request (
+ process: mach_port_t;
+ replyport reply_port: reply_port_t;
+ signal: int;
+ refport: mach_port_t);
+
+/* Add the others as necessary. */