From 1711ab4da336a78976c2211411e669a1b27bf947 Mon Sep 17 00:00:00 2001 From: midipix Date: Fri, 4 Dec 2015 19:48:15 -0500 Subject: API redesign 1/10: driver: rename struct pe_driver_ctx_impl to pe_driver_ctx_alloc. --- src/driver/pe_driver_ctx.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/driver/pe_driver_ctx.c') diff --git a/src/driver/pe_driver_ctx.c b/src/driver/pe_driver_ctx.c index 6699fcc..9daad39 100644 --- a/src/driver/pe_driver_ctx.c +++ b/src/driver/pe_driver_ctx.c @@ -41,7 +41,7 @@ static const struct argv_option options[] = { {0} }; -struct pe_driver_ctx_impl { +struct pe_driver_ctx_alloc { struct argv_meta * meta; struct pe_symbol_ctx symctx; struct pe_output_ctx outctx; @@ -87,12 +87,12 @@ static int pe_driver_usage( static struct pe_driver_ctx * pe_driver_ctx_alloc(struct argv_meta * meta, size_t nunits) { - struct pe_driver_ctx_impl * ictx; + struct pe_driver_ctx_alloc * ictx; size_t size; struct argv_entry * entry; const char ** units; - size = sizeof(struct pe_driver_ctx_impl); + size = sizeof(struct pe_driver_ctx_alloc); size += (nunits+1)*sizeof(const char *); if (!(ictx = calloc(size,1))) @@ -225,7 +225,7 @@ static void pe_driver_close_fds(struct pe_common_ctx * cctx) close(cctx->fdout); } -static void pe_free_driver_ctx_impl(struct pe_driver_ctx_impl * ictx) +static void pe_free_driver_ctx_impl(struct pe_driver_ctx_alloc * ictx) { if (ictx->symctx.append) free(ictx->symctx.append); @@ -240,12 +240,12 @@ static void pe_free_driver_ctx_impl(struct pe_driver_ctx_impl * ictx) void pe_free_driver_ctx(struct pe_driver_ctx * ctx) { - struct pe_driver_ctx_impl * ictx; + struct pe_driver_ctx_alloc * ictx; uintptr_t addr; if (ctx) { - addr = (uintptr_t)ctx - offsetof(struct pe_driver_ctx_impl,ctx); - ictx = (struct pe_driver_ctx_impl *)addr; + addr = (uintptr_t)ctx - offsetof(struct pe_driver_ctx_alloc,ctx); + ictx = (struct pe_driver_ctx_alloc *)addr; pe_free_driver_ctx_impl(ictx); } } -- cgit v1.2.3