summaryrefslogtreecommitdiff
path: root/src/comp.h
diff options
context:
space:
mode:
authorAndrea Corallo <akrl@sdf.org>2019-12-24 08:09:21 +0100
committerAndrea Corallo <akrl@sdf.org>2020-01-01 11:38:15 +0100
commit36ab5c6d49f8fbfb858844743223414e6f2f2564 (patch)
tree1d614912c254996457217f1327fe624d5c6c2929 /src/comp.h
parent080dacda7896e0eb5ee54b1550097e45a4f423de (diff)
downloademacs-36ab5c6d49f8fbfb858844743223414e6f2f2564.tar.gz
emacs-36ab5c6d49f8fbfb858844743223414e6f2f2564.tar.bz2
emacs-36ab5c6d49f8fbfb858844743223414e6f2f2564.zip
some more pdumper integration support
Diffstat (limited to 'src/comp.h')
-rw-r--r--src/comp.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/comp.h b/src/comp.h
index 36ee5d10e45..c4849ba13d1 100644
--- a/src/comp.h
+++ b/src/comp.h
@@ -30,8 +30,6 @@ struct Lisp_Native_Comp_Unit
Lisp_Object file;
/* Analogous to the constant vector but per compilation unit. */
Lisp_Object data_vec;
- /* Compilation unit file descriptor and handle. */
- int fd;
dynlib_handle_ptr handle;
};
@@ -49,8 +47,12 @@ XNATIVE_COMP_UNIT (Lisp_Object a)
}
/* Defined in comp.c. */
+extern void load_comp_unit (struct Lisp_Native_Comp_Unit *);
extern void syms_of_comp (void);
+/* Fill the freloc structure. Must be called before any eln is loaded. */
extern void fill_freloc (void);
+/* Return 1 if freloc is filled or 0 otherwise. */
+extern int filled_freloc (void);
#endif
#endif