aboutsummaryrefslogtreecommitdiff
path: root/src/include/gnunet_testing_lib.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-03-09 12:23:55 +0000
committerChristian Grothoff <christian@grothoff.org>2012-03-09 12:23:55 +0000
commit64cb39f0d4ba7edfbbebd100cffb4a0c76d8caa5 (patch)
tree4e7acf1fa05f1fa6f17a0b5c5bff7846e8bec2b7 /src/include/gnunet_testing_lib.h
parent4d340e04159fa0c491fa7d4976b3621bbbbcf35f (diff)
downloadgnunet-64cb39f0d4ba7edfbbebd100cffb4a0c76d8caa5.tar.gz
gnunet-64cb39f0d4ba7edfbbebd100cffb4a0c76d8caa5.zip
-removing 'proc' and replacing it with a different proc for each of the different types of processes being started so that we can actually figure out which ones are running
Diffstat (limited to 'src/include/gnunet_testing_lib.h')
-rw-r--r--src/include/gnunet_testing_lib.h29
1 files changed, 27 insertions, 2 deletions
diff --git a/src/include/gnunet_testing_lib.h b/src/include/gnunet_testing_lib.h
index 03b837668..b170670d1 100644
--- a/src/include/gnunet_testing_lib.h
+++ b/src/include/gnunet_testing_lib.h
@@ -304,9 +304,34 @@ struct GNUNET_TESTING_Daemon
304 void *update_cb_cls; 304 void *update_cb_cls;
305 305
306 /** 306 /**
307 * PID of the process that we started last. 307 * PID of the process we used to run gnunet-arm or SSH to start the peer.
308 */ 308 */
309 struct GNUNET_OS_Process *proc; 309 struct GNUNET_OS_Process *proc_arm_start;
310
311 /**
312 * PID of the process we used to run gnunet-arm or SSH to stop the peer.
313 */
314 struct GNUNET_OS_Process *proc_arm_stop;
315
316 /**
317 * PID of the process we used to run gnunet-arm or SSH to manage services at the peer.
318 */
319 struct GNUNET_OS_Process *proc_arm_srv_start;
320
321 /**
322 * PID of the process we used to run gnunet-arm or SSH to manage services at the peer.
323 */
324 struct GNUNET_OS_Process *proc_arm_srv_stop;
325
326 /**
327 * PID of the process we used to run copy files
328 */
329 struct GNUNET_OS_Process *proc_arm_copying;
330
331 /**
332 * PID of the process we used to run gnunet-peerinfo.
333 */
334 struct GNUNET_OS_Process *proc_arm_peerinfo;
310 335
311 /** 336 /**
312 * Handle to the server. 337 * Handle to the server.