We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e2d835 commit 66b7bd0Copy full SHA for 66b7bd0
src/staticdata.c
@@ -3552,8 +3552,6 @@ JL_DLLEXPORT jl_image_buf_t jl_preload_sysimg(const char *fname)
3552
jl_errorf("System image file \"%s\" not found.", fname);
3553
ios_bufmode(&f, bm_none);
3554
3555
- JL_SIGATOMIC_BEGIN();
3556
-
3557
ios_seek_end(&f);
3558
size_t len = ios_pos(&f);
3559
char *sysimg = (char*)jl_gc_perm_alloc(len, 0, 64, 0);
@@ -3564,8 +3562,6 @@ JL_DLLEXPORT jl_image_buf_t jl_preload_sysimg(const char *fname)
3564
3562
3565
3563
ios_close(&f);
3566
3567
- JL_SIGATOMIC_END();
3568
3569
jl_sysimage_buf = (jl_image_buf_t) {
3570
.kind = JL_IMAGE_KIND_JI,
3571
.handle = NULL,
0 commit comments