* win32/win32.h: define execv() using do_aspawn().

* process.c (proc_exec_v): remove #ifdef's which stopped needing.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5153 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2003-12-10 04:00:07 +00:00
Родитель edc03a2912
Коммит 79444dbdb9
3 изменённых файлов: 8 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,9 @@
Wed Dec 10 12:53:05 2003 WATANABE Hirofumi <eban@ruby-lang.org>
* win32/win32.h: define execv() using do_aspawn().
* process.c (proc_exec_v): remove #ifdef's which stopped needing.
Tue Dec 9 23:32:23 2003 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>
* ext/tk/lib/tk.rb, ext/tk/lib/tkcanvas.rb, ext/tk/lib/tkdialog.rb,

Просмотреть файл

@ -599,11 +599,7 @@ proc_exec_v(argv, prog)
}
#endif /* MSDOS or __human68k__ or __EMX__ */
before_exec();
#ifdef _WIN32
do_aspawn(P_OVERLAY, prog, argv);
#else
execv(prog, argv);
#endif
after_exec();
return -1;
}

Просмотреть файл

@ -117,6 +117,8 @@ extern "C++" {
#define fsync(h) _commit(h)
#undef stat
#define stat(path,st) rb_w32_stat(path,st)
#undef execv
#define execv(path,argv) do_aspawn(P_OVERLAY,path,argv)
#ifdef __MINGW32__
struct timezone {