diff options
author | midipix <writeonce@midipix.org> | 2016-10-24 16:41:54 -0400 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2016-11-11 00:22:50 -0500 |
commit | b183d1ada2b4db899179e1865d4248f8e950a1ca (patch) | |
tree | 26e5b10acfd938ebd3b74c41f40d68d01e8a6a2c /include | |
parent | 99b875dda2bc51ebc832fb9e380d3bdcc1097c8f (diff) | |
download | mdso-b183d1ada2b4db899179e1865d4248f8e950a1ca.tar.bz2 mdso-b183d1ada2b4db899179e1865d4248f8e950a1ca.tar.xz |
helper api: renamed mdso_create_output() --> mdso_create_asm_source().
Diffstat (limited to 'include')
-rw-r--r-- | include/mdso/mdso.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/mdso/mdso.h b/include/mdso/mdso.h index eba41ad..9efda11 100644 --- a/include/mdso/mdso.h +++ b/include/mdso/mdso.h @@ -107,6 +107,9 @@ mdso_api void mdso_free_unit_ctx (struct mdso_unit_ctx *); mdso_api int mdso_map_input (const struct mdso_driver_ctx *, int fd, const char * path, int prot, struct mdso_input *); mdso_api int mdso_unmap_input (struct mdso_input *); +/* helper api */ +mdso_api FILE*mdso_create_asm_source (const struct mdso_driver_ctx *, const char * asmname); + /* utility api */ mdso_api int mdso_main (int, char **, char **); mdso_api int mdso_create_implib_sources(const struct mdso_driver_ctx *); @@ -117,7 +120,6 @@ mdso_api int mdso_output_error_vector (const struct mdso_driver_ctx *); /* low-level api */ mdso_api uint32_t mdso_crc32_mbstr (const unsigned char * str, size_t * symlen); mdso_api uint64_t mdso_crc64_mbstr (const unsigned char * str, size_t * symlen); -mdso_api FILE * mdso_create_output (const struct mdso_driver_ctx *, const char * asmname); mdso_api int mdso_generate_dsometa (const struct mdso_driver_ctx *, FILE * fout); mdso_api int mdso_generate_symentry(const struct mdso_driver_ctx *, const char * sym, FILE * fout); mdso_api int mdso_generate_symfn (const struct mdso_driver_ctx *, const char * sym, FILE * fout); |