From 9b8a3e11c558877c09416991ff1ec840fea6d0ab Mon Sep 17 00:00:00 2001 From: Dimitri Staessens Date: Sat, 2 Dec 2017 14:01:03 +0100 Subject: lib, tools: Rename application process and instance This refactors ouroboros to use "program" instead of "application process" and "process" instead of "application process instance" to align with current naming in current Operating Systems courses instead of the ISO nomenclature adopted by RINA. This change permeates through the entire implementation. Also contains some minor other refactors. Signed-off-by: Dimitri Staessens Signed-off-by: Sander Vrijders --- include/ouroboros/shm_rbuff.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'include/ouroboros/shm_rbuff.h') diff --git a/include/ouroboros/shm_rbuff.h b/include/ouroboros/shm_rbuff.h index af50aada..d33af473 100644 --- a/include/ouroboros/shm_rbuff.h +++ b/include/ouroboros/shm_rbuff.h @@ -34,10 +34,10 @@ struct shm_rbuff; -struct shm_rbuff * shm_rbuff_create(pid_t api, +struct shm_rbuff * shm_rbuff_create(pid_t pid, int port_id); -struct shm_rbuff * shm_rbuff_open(pid_t api, +struct shm_rbuff * shm_rbuff_open(pid_t pid, int port_id); void shm_rbuff_close(struct shm_rbuff * rb); -- cgit v1.2.3