diff options
author | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-06 19:04:04 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@intec.ugent.be> | 2016-07-06 19:04:04 +0200 |
commit | b7696a17688bc338ac150f8d5ffd0b59c3206f77 (patch) | |
tree | ec2f2b03efcecf2946286ebb3b6f4580f0865dea /src/irmd/registry.c | |
parent | 4a3e3f1b9eef457f3f216d2b2a4ccf0a32eb9599 (diff) | |
parent | 90c3c96b5c9b1e4db6bb6d1894a21aec54a965b1 (diff) | |
download | ouroboros-b7696a17688bc338ac150f8d5ffd0b59c3206f77.tar.gz ouroboros-b7696a17688bc338ac150f8d5ffd0b59c3206f77.zip |
Merge remote-tracking branch 'upstream/be' into be
Diffstat (limited to 'src/irmd/registry.c')
-rw-r--r-- | src/irmd/registry.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/irmd/registry.c b/src/irmd/registry.c index a4e2fcfa..ae532d5a 100644 --- a/src/irmd/registry.c +++ b/src/irmd/registry.c @@ -491,9 +491,9 @@ int registry_remove_ap_auto(struct list_head * registry, } -struct reg_instance * registry_add_ap_instance(struct list_head * registry, - char * name, - pid_t api) +struct reg_instance * registry_add_api_name(struct list_head * registry, + pid_t api, + char * name) { struct reg_entry * e = NULL; struct reg_instance * i = NULL; @@ -534,9 +534,9 @@ struct reg_instance * registry_add_ap_instance(struct list_head * registry, return i; } -int registry_remove_ap_instance(struct list_head * registry, - char * name, - pid_t api) +int registry_remove_api_name(struct list_head * registry, + pid_t api, + char * name) { struct reg_entry * e = NULL; struct reg_instance * i = NULL; |