diff options
author | midipix <writeonce@midipix.org> | 2019-12-21 11:52:47 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2019-12-21 14:43:47 +0000 |
commit | 64a26cc67d6782d1ee8812c8c1307a2607144b97 (patch) | |
tree | 1ad968f07a44c49215395a58a828ca33e6616c27 /src/core | |
parent | 2af0aaf1c0ae5ed331eb560acde54d076c2198e5 (diff) | |
download | sltdl-64a26cc67d6782d1ee8812c8c1307a2607144b97.tar.bz2 sltdl-64a26cc67d6782d1ee8812c8c1307a2607144b97.tar.xz |
lt_dlsym(), lt_dlclose(): initial implementation and integration.
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/lt_path.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/core/lt_path.c b/src/core/lt_path.c index 37fec79..4981b1e 100644 --- a/src/core/lt_path.c +++ b/src/core/lt_path.c @@ -408,3 +408,28 @@ struct lt_modctx * lt_dlopenadvise(const char * module, struct lt_modctl * modct (void)modctl; return lt_dlopenext(module); } + +void * lt_dlsym(struct lt_modctx * modctx, const char * symname) +{ + return dlsym(modctx->maddr,symname); +} + +int lt_dlclose(struct lt_modctx * modctx) +{ + struct lt_modctx * pmod; + + lt_slock(); + + for (pmod=lt_modv_head; pmod ; pmod=pmod->mnext) { + if (pmod == modctx) { + if (pmod->mrefs) { + pmod->mrefs--; + return lt_sunlock(0); + } + + return lt_sunlock(-1); + } + } + + return lt_sunlock(-1); +} |