From 4373b876273680b58ab1745a203b8bfc53f1de9d Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 19 Feb 2024 02:50:41 +0000 Subject: library api's: _host_ (host and flavor interfaces) namespace overhaul. --- src/driver/slbt_host_params.c | 6 +++--- src/logic/slbt_exec_install.c | 2 +- src/logic/slbt_exec_link.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/driver/slbt_host_params.c b/src/driver/slbt_host_params.c index dd4e787..0a8bc11 100644 --- a/src/driver/slbt_host_params.c +++ b/src/driver/slbt_host_params.c @@ -624,7 +624,7 @@ slbt_hidden int slbt_init_ldrpath( } -void slbt_reset_alternate_host(const struct slbt_driver_ctx * ctx) +void slbt_host_reset_althost(const struct slbt_driver_ctx * ctx) { struct slbt_driver_ctx_alloc * ictx; uintptr_t addr; @@ -636,7 +636,7 @@ void slbt_reset_alternate_host(const struct slbt_driver_ctx * ctx) slbt_free_host_params(&ictx->ctx.ahost); } -int slbt_set_alternate_host( +int slbt_host_set_althost( const struct slbt_driver_ctx * ctx, const char * host, const char * flavor) @@ -686,7 +686,7 @@ int slbt_set_alternate_host( return 0; } -int slbt_get_flavor_settings( +int slbt_host_flavor_settings( const char * flavor, const struct slbt_flavor_settings ** settings) { diff --git a/src/logic/slbt_exec_install.c b/src/logic/slbt_exec_install.c index bca494b..dc311f8 100644 --- a/src/logic/slbt_exec_install.c +++ b/src/logic/slbt_exec_install.c @@ -537,7 +537,7 @@ static int slbt_exec_install_entry( /* symlink-based alternate host */ if (!fstatic) { - if (slbt_set_alternate_host(dctx,host,host)) + if (slbt_host_set_althost(dctx,host,host)) return SLBT_NESTED_ERROR(dctx); fpe = !strcmp(dctx->cctx->asettings.imagefmt,"pe"); diff --git a/src/logic/slbt_exec_link.c b/src/logic/slbt_exec_link.c index e2848ea..e721bc6 100644 --- a/src/logic/slbt_exec_link.c +++ b/src/logic/slbt_exec_link.c @@ -254,7 +254,7 @@ int slbt_exec_link( if (fstaticonly && dot && !strcmp(dot,".la")) { const struct slbt_flavor_settings * dflavor; - if (slbt_get_flavor_settings("default",&dflavor) < 0) + if (slbt_host_flavor_settings("default",&dflavor) < 0) return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_LINK_FLOW); if (strcmp(dctx->cctx->settings.dsosuffix,dflavor->dsosuffix)) { @@ -319,7 +319,7 @@ int slbt_exec_link( if (dot && !strcmp(dot,".la") && dctx->cctx->rpath && !fstaticonly) { const struct slbt_flavor_settings * dflavor; - if (slbt_get_flavor_settings("default",&dflavor) < 0) + if (slbt_host_flavor_settings("default",&dflavor) < 0) return SLBT_CUSTOM_ERROR(dctx,SLBT_ERR_LINK_FLOW); /* -shrext support */ -- cgit v1.2.3