Add the ctf_get function and update the args to linker_file_function_listall.

This commit is contained in:
John Birrell 2008-05-23 07:08:59 +00:00
parent 91eaf3e183
commit 4b3d60930a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=179238

View File

@ -648,6 +648,12 @@ linker_file_unload(linker_file_t file, int flags)
return (0);
}
int
linker_ctf_get(linker_file_t file, linker_ctf_t *lc)
{
return (LINKER_CTF_GET(file, lc));
}
static int
linker_file_add_dependency(linker_file_t file, linker_file_t dep)
{
@ -696,7 +702,7 @@ linker_file_lookup_set(linker_file_t file, const char *name,
*/
int
linker_file_function_listall(linker_file_t lf,
int (*callback_func)(linker_file_t, linker_symval_t *, void *), void *arg)
linker_function_nameval_callback_t callback_func, void *arg)
{
return (LINKER_EACH_FUNCTION_NAMEVAL(lf, callback_func, arg));
}