summaryrefslogtreecommitdiffstats
path: root/dln.h
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-07 21:43:54 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-05-07 21:43:54 +0000
commita0dd2795f3396dc130058be1e43b665ffa0845cb (patch)
tree9c152e1a97a38c069d33785719148e5723278694 /dln.h
parentcfc6c3e01e7347b1fcd6fd45b1297e241a0071ed (diff)
downloadruby-a0dd2795f3396dc130058be1e43b665ffa0845cb.tar.gz
ruby-a0dd2795f3396dc130058be1e43b665ffa0845cb.tar.xz
ruby-a0dd2795f3396dc130058be1e43b665ffa0845cb.zip
* dln.c (dln_find_exe_r, dln_find_file_r): reentrant versions.
* file.c (rb_find_file_ext, rb_find_file), process.c (proc_exec_v), (rb_proc_exec, proc_spawn_v, proc_spawn), ruby.c (process_options): use reentrant versions. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@16319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'dln.h')
-rw-r--r--dln.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/dln.h b/dln.h
index 90d76aa90..aee4c8fe4 100644
--- a/dln.h
+++ b/dln.h
@@ -30,6 +30,8 @@
char *dln_find_exe(const char*,const char*);
char *dln_find_file(const char*,const char*);
+char *dln_find_exe_r(const char*,const char*,char*,int);
+char *dln_find_file_r(const char*,const char*,char*,int);
#ifdef USE_DLN_A_OUT
extern char *dln_argv0;