* dynl.c: The dynamic linking and module registration functions
[bpt/guile.git] / libguile / dynl-shl.c
CommitLineData
1edae076
MV
1/* dynl-shl.c - dynamic linking with shl_load (HP-UX)
2 *
96599e6a 3 * Copyright (C) 1990-1997 Free Software Foundation, Inc.
1edae076
MV
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
8 * any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this software; see the file COPYING. If not, write to
17 * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
18 *
19 * As a special exception, the Free Software Foundation gives permission
20 * for additional uses of the text contained in its release of GUILE.
21 *
22 * The exception is that, if you link the GUILE library with other files
23 * to produce an executable, this does not by itself cause the
24 * resulting executable to be covered by the GNU General Public License.
25 * Your use of that executable is in no way restricted on account of
26 * linking the GUILE library code into it.
27 *
28 * This exception does not however invalidate any other reasons why
29 * the executable file might be covered by the GNU General Public License.
30 *
31 * This exception applies only to the code released by the
32 * Free Software Foundation under the name GUILE. If you copy
33 * code from other Free Software Foundation releases into a copy of
34 * GUILE, as the General Public License permits, the exception does
35 * not apply to the code that you add in this way. To avoid misleading
36 * anyone as to the status of such modified files, you must delete
37 * this exception notice from them.
38 *
39 * If you write modifications of your own for GUILE, it is your choice
40 * whether to permit this exception to apply to your modifications.
41 * If you do not wish that, delete this exception notice.
42 */
43
44/* "dynl.c" dynamically link&load object files.
45 Author: Aubrey Jaffer
46 Modified for libguile by Marius Vollmer */
47
1edae076
MV
48#include "dl.h"
49
80bc7890
MV
50static void *
51sysdep_dynl_link (fname, subr)
52 char *fname;
53 char *subr;
1edae076 54{
1edae076
MV
55 shl_t shl;
56
80bc7890 57 shl = shl_load (fname, BIND_DEFERRED , 0L);
1edae076 58 if (NULL==shl)
80bc7890
MV
59 scm_misc_error (subr, "dynamic linking failed", SCM_EOL);
60 return shl;
1edae076
MV
61}
62
80bc7890
MV
63static void
64sysdep_dynl_unlink (handle, subr)
65 void *handle;
66 char *subr;
1edae076 67{
80bc7890 68 int status;
1edae076
MV
69
70 SCM_DEFER_INTS;
80bc7890 71 status = shl_unload ((shl_t) handle);
1edae076 72 SCM_ALLOW_INTS;
80bc7890
MV
73 if (status)
74 scm_misc_error (subr, "dynamic unlinking failed", SCM_EOL);
1edae076
MV
75}
76
80bc7890
MV
77static void *
78sysdep_dynl_func (symb, handle, subr)
79 char *symb;
80 void *handle;
81 char *subr;
1edae076 82{
80bc7890 83 void (*func)() = NULL;
1edae076 84 int status;
1edae076
MV
85
86 SCM_DEFER_INTS;
80bc7890 87 status = shl_findsym ((shl_t) handle, symb, TYPE_PROCEDURE, &func);
1edae076 88 SCM_ALLOW_INTS;
80bc7890
MV
89 if (status)
90 scm_misc_error (s_dynamic_call, "undefined function",
91 scm_cons (scm_makfrom0str (symb), SCM_EOL));
92 return func;
1edae076
MV
93}
94
80bc7890
MV
95static void
96sysdep_dynl_init ()
1edae076 97{
1edae076 98}