summaryrefslogtreecommitdiffstats
path: root/crypto/dso/dso_dl.c
diff options
context:
space:
mode:
authorRich Salz <rsalz@openssl.org>2015-01-30 12:46:49 -0500
committerRich Salz <rsalz@openssl.org>2015-01-30 12:46:49 -0500
commit6f1a93ad111c7dfe36a09a976c4c009079b19ea1 (patch)
treedb4a17ad2c86410d1caac79780892a6ff3786b26 /crypto/dso/dso_dl.c
parent2e635aa81cf1c4e3fd7cb0334c79e7d0771140f1 (diff)
Dead code removal: #if 0 conf, dso, pqueue, threads
Mostly, but not completely, debugging print statements. Some old logic kept for internal documentation reasons, perhaps. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'crypto/dso/dso_dl.c')
-rw-r--r--crypto/dso/dso_dl.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/crypto/dso/dso_dl.c b/crypto/dso/dso_dl.c
index 1f4d198663..989d4d9587 100644
--- a/crypto/dso/dso_dl.c
+++ b/crypto/dso/dso_dl.c
@@ -77,13 +77,6 @@ static int dl_load(DSO *dso);
static int dl_unload(DSO *dso);
static void *dl_bind_var(DSO *dso, const char *symname);
static DSO_FUNC_TYPE dl_bind_func(DSO *dso, const char *symname);
-# if 0
-static int dl_unbind_var(DSO *dso, char *symname, void *symptr);
-static int dl_unbind_func(DSO *dso, char *symname, DSO_FUNC_TYPE symptr);
-static int dl_init(DSO *dso);
-static int dl_finish(DSO *dso);
-static int dl_ctrl(DSO *dso, int cmd, long larg, void *parg);
-# endif
static char *dl_name_converter(DSO *dso, const char *filename);
static char *dl_merger(DSO *dso, const char *filespec1,
const char *filespec2);
@@ -96,11 +89,6 @@ static DSO_METHOD dso_meth_dl = {
dl_unload,
dl_bind_var,
dl_bind_func,
-/* For now, "unbind" doesn't exist */
-# if 0
- NULL, /* unbind_var */
- NULL, /* unbind_func */
-# endif
NULL, /* ctrl */
dl_name_converter,
dl_merger,