Skip to content

Commit 2dd4cdf

Browse files
authored
Remove jl_init__threading and jl_init_with_image__threading (#57561)
These were supposed to be removed in Julia 1.8 apparently (#40730)
1 parent f5ce249 commit 2dd4cdf

File tree

2 files changed

+0
-15
lines changed

2 files changed

+0
-15
lines changed

src/jl_exported_funcs.inc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -246,8 +246,6 @@
246246
XX(jl_init_options) \
247247
XX(jl_init_restored_module) \
248248
XX(jl_init_with_image) \
249-
XX(jl_init_with_image__threading) \
250-
XX(jl_init__threading) \
251249
XX(jl_install_sigint_handler) \
252250
XX(jl_instantiate_type_in_env) \
253251
XX(jl_instantiate_unionall) \

src/jlapi.c

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -119,19 +119,6 @@ JL_DLLEXPORT void jl_init(void)
119119
free(libbindir);
120120
}
121121

122-
// HACK: remove this for Julia 1.8 (see <https://github.com/JuliaLang/julia/issues/40730>)
123-
JL_DLLEXPORT void jl_init__threading(void)
124-
{
125-
jl_init();
126-
}
127-
128-
// HACK: remove this for Julia 1.8 (see <https://github.com/JuliaLang/julia/issues/40730>)
129-
JL_DLLEXPORT void jl_init_with_image__threading(const char *julia_bindir,
130-
const char *image_relative_path)
131-
{
132-
jl_init_with_image(julia_bindir, image_relative_path);
133-
}
134-
135122
static void _jl_exception_clear(jl_task_t *ct) JL_NOTSAFEPOINT
136123
{
137124
ct->ptls->previous_exception = NULL;

0 commit comments

Comments
 (0)