[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] adding /proc/pid/exe
From: |
Samuel Thibault |
Subject: |
Re: [PATCH] adding /proc/pid/exe |
Date: |
Mon, 2 Jan 2017 18:20:13 +0100 |
User-agent: |
Mutt/1.5.21+34 (58baf7c9f32f) (2010-12-30) |
Hello,
Samuel Thibault, on Mon 19 Dec 2016 14:38:25 +0100, wrote:
> I'm notably wondering about the RPC:
> should we be using string_t or data_t ?
So, any opinion on this?
> Index: hurd-debian/hurd/process.defs
> ===================================================================
> --- hurd-debian.orig/hurd/process.defs
> +++ hurd-debian/hurd/process.defs
> @@ -413,3 +413,14 @@ routine proc_get_code (
> routine proc_make_task_namespace (
> process: process_t;
> notify: mach_port_send_t);
> +
> +/* Set the process binary executable path. */
> +routine proc_set_exe (
> + process: process_t;
> + path: string_t);
> +
> +/* Get the process binary executable path. */
> +routine proc_get_exe (
> + process: process_t;
> + which: pid_t;
> + out path: data_t, dealloc);
- Re: [PATCH] adding /proc/pid/exe,
Samuel Thibault <=