diff options
| author | Dimitri Staessens <dimitri.staessens@ugent.be> | 2018-10-05 11:24:55 +0200 | 
|---|---|---|
| committer | Sander Vrijders <sander.vrijders@ugent.be> | 2018-10-05 12:45:00 +0200 | 
| commit | 04384c0eab88615902025023bb3e1339ea0f9d1a (patch) | |
| tree | 5c024718b8c70bb700655ac17684865de62dea98 /include | |
| parent | b05354b4af8a4999316c8074ebab496e0214ea15 (diff) | |
| download | ouroboros-04384c0eab88615902025023bb3e1339ea0f9d1a.tar.gz ouroboros-04384c0eab88615902025023bb3e1339ea0f9d1a.zip | |
lib: Rename port_id to flow_id
Renames port_id to flow_id according to updated nomenclature.
Signed-off-by: Dimitri Staessens <dimitri.staessens@ugent.be>
Signed-off-by: Sander Vrijders <sander.vrijders@ugent.be>
Diffstat (limited to 'include')
| -rw-r--r-- | include/ouroboros/np1_flow.h | 6 | ||||
| -rw-r--r-- | include/ouroboros/shm_flow_set.h | 8 | ||||
| -rw-r--r-- | include/ouroboros/shm_rbuff.h | 4 | 
3 files changed, 9 insertions, 9 deletions
| diff --git a/include/ouroboros/np1_flow.h b/include/ouroboros/np1_flow.h index 3435c24a..3a2bbd12 100644 --- a/include/ouroboros/np1_flow.h +++ b/include/ouroboros/np1_flow.h @@ -28,11 +28,11 @@  #include <unistd.h>  int  np1_flow_alloc(pid_t     n_pid, -                    int       port_id, +                    int       flow_id,                      qosspec_t qs); -int  np1_flow_resp(int port_id); +int  np1_flow_resp(int flow_id); -int  np1_flow_dealloc(int port_id); +int  np1_flow_dealloc(int flow_id);  #endif /* OUROBOROS_NP1_FLOW_H */ diff --git a/include/ouroboros/shm_flow_set.h b/include/ouroboros/shm_flow_set.h index ebf63af5..45d372a0 100644 --- a/include/ouroboros/shm_flow_set.h +++ b/include/ouroboros/shm_flow_set.h @@ -42,18 +42,18 @@ void                  shm_flow_set_zero(struct shm_flow_set * shm_set,  int                   shm_flow_set_add(struct shm_flow_set * shm_set,                                         size_t                idx, -                                       int                   port_id); +                                       int                   flow_id);  int                   shm_flow_set_has(struct shm_flow_set * shm_set,                                         size_t                idx, -                                       int                   port_id); +                                       int                   flow_id);  void                  shm_flow_set_del(struct shm_flow_set * shm_set,                                         size_t                idx, -                                       int                   port_id); +                                       int                   flow_id);  void                  shm_flow_set_notify(struct shm_flow_set * set, -                                          int                   port_id, +                                          int                   flow_id,                                            int                   event);  ssize_t               shm_flow_set_wait(const struct shm_flow_set * shm_set, diff --git a/include/ouroboros/shm_rbuff.h b/include/ouroboros/shm_rbuff.h index 223f6bf4..447e081e 100644 --- a/include/ouroboros/shm_rbuff.h +++ b/include/ouroboros/shm_rbuff.h @@ -35,10 +35,10 @@  struct shm_rbuff;  struct shm_rbuff * shm_rbuff_create(pid_t pid, -                                    int   port_id); +                                    int   flow_id);  struct shm_rbuff * shm_rbuff_open(pid_t pid, -                                  int   port_id); +                                  int   flow_id);  void               shm_rbuff_close(struct shm_rbuff * rb); | 
