REPL Server: Don't establish a SIGINT handler.
[bpt/guile.git] / libguile / gsubr.h
CommitLineData
0f2d19dd
JB
1/* classes: h_files */
2
dee01b01
DH
3#ifndef SCM_GSUBR_H
4#define SCM_GSUBR_H
5
be90d0b6
LC
6/* Copyright (C) 1995, 1996, 1998, 2000, 2001, 2006, 2008, 2009,
7 * 2010, 2011 Free Software Foundation, Inc.
dee01b01 8 *
73be1d9e 9 * This library is free software; you can redistribute it and/or
53befeb7
NJ
10 * modify it under the terms of the GNU Lesser General Public License
11 * as published by the Free Software Foundation; either version 3 of
12 * the License, or (at your option) any later version.
dee01b01 13 *
53befeb7
NJ
14 * This library is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
dee01b01 18 *
73be1d9e
MV
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
53befeb7
NJ
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22 * 02110-1301 USA
73be1d9e 23 */
dee01b01 24
0f2d19dd
JB
25\f
26
b4309c3c 27#include "libguile/__scm.h"
0f2d19dd 28
9fdf9fd3
AW
29
30\f
31
9fdf9fd3 32
fd12a19a
AW
33SCM_API SCM scm_subr_objcode_trampoline (unsigned int nreq,
34 unsigned int nopt,
35 unsigned int rest);
9fdf9fd3 36
9fdf9fd3 37
fd12a19a
AW
38/* Subrs
39 */
9fdf9fd3 40
9174596d
AW
41/* Max number of args to the C procedure backing a gsubr */
42#define SCM_GSUBR_MAX 10
43
cc7005bc 44#define SCM_PRIMITIVE_P(x) (SCM_PROGRAM_P (x) && SCM_PROGRAM_IS_PRIMITIVE (x))
d4149a51 45
fd12a19a
AW
46#define SCM_PRIMITIVE_GENERIC_P(x) (SCM_PROGRAM_P (x) && SCM_PROGRAM_IS_PRIMITIVE_GENERIC (x))
47
d4149a51
LC
48#define SCM_SUBRF(x) \
49 ((SCM (*) (void)) \
5b46a8c2 50 SCM_POINTER_VALUE (SCM_SIMPLE_VECTOR_REF (SCM_PROGRAM_OBJTABLE (x), 0)))
d4149a51 51
fd12a19a 52#define SCM_SUBR_NAME(x) (SCM_SIMPLE_VECTOR_REF (SCM_PROGRAM_OBJTABLE (x), 1))
d4149a51
LC
53
54#define SCM_SUBR_GENERIC(x) \
55 ((SCM *) \
5b46a8c2 56 SCM_POINTER_VALUE (SCM_SIMPLE_VECTOR_REF (SCM_PROGRAM_OBJTABLE (x), 2)))
d4149a51 57
fd12a19a
AW
58#define SCM_SET_SUBR_GENERIC(x, g) \
59 (*SCM_SUBR_GENERIC (x) = (g))
9fdf9fd3 60
0f2d19dd 61\f
0f2d19dd 62
be90d0b6
LC
63SCM_API SCM scm_c_make_gsubr (const char *name,
64 int req, int opt, int rst, scm_t_subr fcn);
33b001fd
MV
65SCM_API SCM scm_c_make_gsubr_with_generic (const char *name,
66 int req, int opt, int rst,
be90d0b6
LC
67 scm_t_subr fcn, SCM *gf);
68SCM_API SCM scm_c_define_gsubr (const char *name,
69 int req, int opt, int rst, scm_t_subr fcn);
33b001fd
MV
70SCM_API SCM scm_c_define_gsubr_with_generic (const char *name,
71 int req, int opt, int rst,
be90d0b6 72 scm_t_subr fcn, SCM *gf);
9d78586f 73
102dbb6f 74SCM_INTERNAL void scm_init_gsubr (void);
9d78586f 75
dee01b01 76#endif /* SCM_GSUBR_H */
89e00824
ML
77
78/*
79 Local Variables:
80 c-file-style: "gnu"
81 End:
82*/