diff options
author | Jérémie Dimino <jeremie@dimino.org> | 2013-12-23 16:24:50 +0000 |
---|---|---|
committer | Jérémie Dimino <jeremie@dimino.org> | 2013-12-23 16:24:50 +0000 |
commit | 9fd3c41247589d58458fa269debde17b3a15e63e (patch) | |
tree | f2b13c73a9f847fd1b8f9c5d2f4ad2b25ce7bbc2 /otherlibs/unix/unlink.c | |
parent | 61a4334e2731d2a526a74e13db425297e633ef3f (diff) |
fix #6276: release the runtime in all stubs that might block
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@14384 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'otherlibs/unix/unlink.c')
-rw-r--r-- | otherlibs/unix/unlink.c | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/otherlibs/unix/unlink.c b/otherlibs/unix/unlink.c index 76ec91310..4a4a513e3 100644 --- a/otherlibs/unix/unlink.c +++ b/otherlibs/unix/unlink.c @@ -12,10 +12,20 @@ /***********************************************************************/ #include <mlvalues.h> +#include <memory.h> +#include <signals.h> #include "unixsupport.h" CAMLprim value unix_unlink(value path) { - if (unlink(String_val(path)) == -1) uerror("unlink", path); - return Val_unit; + CAMLparam1(path); + char * p; + int ret; + p = caml_stat_alloc_string(path); + caml_enter_blocking_section(); + ret = unlink(p); + caml_leave_blocking_section(); + caml_stat_free(p); + if (ret == -1) uerror("unlink", path); + CAMLreturn(Val_unit); } |