summaryrefslogtreecommitdiff
path: root/hurd/process_reply.defs
blob: 38f2082e362f8aa8bbc5ca2e5dcead21211191ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* Reply half of wait
   Copyright (C) 1991,93,94,96,2001,13 Free Software Foundation, Inc.

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 process_reply 24100;   /* must match process.defs + 100 */

#include <hurd/hurd_types.defs>

type reply_port_t = polymorphic | MACH_MSG_TYPE_PORT_SEND_ONCE
	ctype: mach_port_t;

skip; skip;  /* get/set hostid */
skip; skip;  /* get/set hostname */
skip; /* getprivports */
skip; /* getallpids */
skip; skip; /* set/get execdata */
skip; /* execdata_notify */
skip; skip; /* proc_uname, proc_register_version */

skip; /* reauthenticate */
skip; /* child */

simpleroutine proc_setmsgport_reply (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	in oldmsgport: mach_port_t);

skip; /* reassign */
skip; /* setowner */
skip; /* getpids */
skip; /* set_arg_locations */
skip; /* get_arg_locations */

simpleroutine proc_getmsgport_reply (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	in msgports: mach_port_t);

simpleroutine proc_wait_reply (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	in status: int;
	in sigcode: int;
	in rusage: rusage_t;
	in pid_status: pid_t);

skip; /* proc_dostop */
skip; /* proc_handle_exceptions */
skip; /* proc_mark_stop */
skip; /* proc_mark_cont */
skip; /* proc_mark_exit */
skip; /* proc_mark_exec */
skip; /* proc_mark_traced */
skip; /* proc_mod_stopchild */

simpleroutine proc_pid2task (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	task: task_t);

simpleroutine proc_task2pid (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	pid: pid_t);

simpleroutine proc_task2proc (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	proc: mach_port_make_send_t);

simpleroutine proc_proc2task (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	task: task_t);

simpleroutine proc_pid2proc (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	proc: mach_port_make_send_t);

simpleroutine proc_getprocinfo (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	flags: int;
	procinfo: procinfo_t, dealloc;
	threadwaits: data_t, dealloc);

simpleroutine proc_getprocargs (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	procargs: data_t, dealloc);

simpleroutine proc_getprocenv (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	procenv: data_t, dealloc);

skip; /* proc_make_login_coll */

simpleroutine proc_getloginid (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	login_id: pid_t);

simpleroutine proc_getloginpids (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	pids: pidarray_t, dealloc);

skip; /* proc_setlogin */

simpleroutine proc_getlogin (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	logname: string_t);

skip; /* proc_setsid */

simpleroutine proc_getsid (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	sid: pid_t);

simpleroutine proc_getsessionpgids (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	pgidset: pidarray_t, dealloc);

simpleroutine proc_getsessionpids (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	pidset: pidarray_t, dealloc);

simpleroutine proc_getsidport (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	sessport: mach_port_send_t);

skip; /* proc_setpgrp */

simpleroutine proc_getpgrp (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	pgrp: pid_t);

simpleroutine proc_getpgrppids (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	pidset: pidarray_t, dealloc);

simpleroutine proc_get_tty (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	tty: mach_port_send_t);

simpleroutine proc_getnports (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	nports: mach_msg_type_number_t);

/*** Routines related to early server bootstrapping ***/

skip;  /* Reserved for proc_set_init_task */
skip; /* proc_mark_important */

simpleroutine proc_is_important (
	reply_port: reply_port_t;
	RETURN_CODE_ARG;
	essential: boolean_t);