diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-10 22:19:56 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2022-08-10 22:20:28 +0200 |
commit | e6c258d00582258ffd0448ad5d6a6ef0d3926cf6 (patch) | |
tree | e9f216dd131fd8e65879845ee8d79a9dad52b60c | |
parent | a8a9ad7f6a298ac3f669fc18bb17005e48524c01 (diff) | |
download | hurd-e6c258d00582258ffd0448ad5d6a6ef0d3926cf6.tar.gz hurd-e6c258d00582258ffd0448ad5d6a6ef0d3926cf6.tar.bz2 hurd-e6c258d00582258ffd0448ad5d6a6ef0d3926cf6.zip |
Keep proc_setowner_request for backward compatibility
So that existing callers can still compile, and just get MIG_BAD_ID.
-rw-r--r-- | hurd/process_request.defs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/hurd/process_request.defs b/hurd/process_request.defs index 3401a2cb..4ac57f6e 100644 --- a/hurd/process_request.defs +++ b/hurd/process_request.defs @@ -125,7 +125,12 @@ simpleroutine proc_reassign_request ( ureplyport reply: reply_port_t; newtask: task_t); -skip; /* Was proc_setowner */ +/* Deprecated; definition kept for compatibility. */ +simpleroutine proc_setowner_request ( + process: process_t; + ureplyport reply: reply_port_t; + owner: uid_t; + clear: int); /* Get the process ID and the parent process ID, also find out if we are orphaned. */ |