Skip to content

Commit

Permalink
DLLEXPORT jl_base_ctx. fixes #9513
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffBezanson committed Jan 2, 2015
1 parent 39f5cf2 commit c3449a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/julia.h
Original file line number Diff line number Diff line change
Expand Up @@ -993,7 +993,7 @@ DLLEXPORT void jl_handle_stack_switch();

#ifdef COPY_STACKS
// initialize base context of root task
extern jl_jmp_buf jl_base_ctx;
extern DLLEXPORT jl_jmp_buf jl_base_ctx;
#define JL_SET_STACK_BASE \
{ \
int __stk; \
Expand Down
2 changes: 1 addition & 1 deletion src/task.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ volatile int jl_in_stackwalk = 0;
#include <dlfcn.h> // for dladdr
#endif

jl_jmp_buf jl_base_ctx;
DLLEXPORT jl_jmp_buf jl_base_ctx;

/* This probing code is derived from Douglas Jones' user thread library */

Expand Down

0 comments on commit c3449a0

Please sign in to comment.