[julia-users] Does anyone know how jl_calls may have to do with SIGUSER1?

2016-09-12 Thread K leo
I put the following lines in my C++ code. These are only executed once near the beginning of the code and run fine. There are no other julia related statements in the code. But with the presence of these statements in the code, whenever the code does some communications requests on the Internet

Re: [julia-users] Does anyone know how jl_calls may have to do with SIGUSER1?

2016-09-12 Thread Yichao Yu
On Mon, Sep 12, 2016 at 10:03 AM, K leo wrote: > I put the following lines in my C++ code. These are only executed once > near the beginning of the code > and run fine. There are no other julia related statements in the code. > But with the presence of these statements in the code, whenever the c

Re: [julia-users] Does anyone know how jl_calls may have to do with SIGUSER1?

2016-09-12 Thread K leo
Thanks for the reply. I registered a signal handler before calling these and the code now does not terminate and appears to run fine. Will my handler cause problems to the jl_calls? The documentation mentions about SIGUSER2 with the profiler BTW. On Monday, September 12, 2016 at 10:06:04 PM UTC

Re: [julia-users] Does anyone know how jl_calls may have to do with SIGUSER1?

2016-09-12 Thread Yichao Yu
On Mon, Sep 12, 2016 at 10:40 AM, K leo wrote: > Thanks for the reply. > I registered a signal handler before calling these and the code now does > not terminate and appears to run fine. Will my handler cause problems to > the jl_calls? > You handler doesn't cause any trouble, it will just nev