diff options
author | Andrea Corallo <akrl@sdf.org> | 2019-12-24 08:09:21 +0100 |
---|---|---|
committer | Andrea Corallo <akrl@sdf.org> | 2020-01-01 11:38:15 +0100 |
commit | 36ab5c6d49f8fbfb858844743223414e6f2f2564 (patch) | |
tree | 1d614912c254996457217f1327fe624d5c6c2929 /src/comp.h | |
parent | 080dacda7896e0eb5ee54b1550097e45a4f423de (diff) | |
download | emacs-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.h | 6 |
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 |