Skip to content

Commit

Permalink
Merge pull request #805 from hannes14/hs/sigchld
Browse files Browse the repository at this point in the history
  • Loading branch information
ederc authored May 23, 2024
2 parents 91dfa8d + 5db114c commit dd0d827
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ Pidfile = "1.3"
Pkg = "1.6"
Random = "1.6"
RandomExtensions = "0.4.2"
Singular_jll = "~403.216.1603"
Singular_jll = "~404.000.100"
Statistics = "1.6"
julia = "1.6"
lib4ti2_jll = "1.6.10"
libsingular_julia_jll = "=0.44.3"
libsingular_julia_jll = "~0.45.0"
4 changes: 4 additions & 0 deletions deps/src/caller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
#include <Singular/ipshell.h>
#include <Singular/lists.h>
#include <misc/intvec.h>
#include <Singular/cntrlc.h>


using jlcxx::jlcxx_array_data;

Expand Down Expand Up @@ -303,7 +305,9 @@ jl_value_t * call_singular_library_procedure(std::string s,
}
BOOLEAN err;
jl_value_t * retObj;
si_set_signals();
leftv ret = ii_CallLibProcM(s.c_str(), args, argtypes, r, err);
si_reset_signals();
if (err)
{
inerror = 0;
Expand Down

0 comments on commit dd0d827

Please sign in to comment.