Transfer the full process startup info as well as the command-line
through the server.

diff --git a/server/request.h b/server/request.h
index 9a1350e..7e3b507 100644
--- a/server/request.h
+++ b/server/request.h
@@ -106,6 +106,7 @@
 DECL_HANDLER(new_thread);
 DECL_HANDLER(boot_done);
 DECL_HANDLER(init_process);
+DECL_HANDLER(get_startup_info);
 DECL_HANDLER(init_process_done);
 DECL_HANDLER(init_thread);
 DECL_HANDLER(terminate_process);
@@ -264,6 +265,7 @@
     (req_handler)req_new_thread,
     (req_handler)req_boot_done,
     (req_handler)req_init_process,
+    (req_handler)req_get_startup_info,
     (req_handler)req_init_process_done,
     (req_handler)req_init_thread,
     (req_handler)req_terminate_process,