Thu Nov 19 13:06:22 1998 Geoffrey Noer <noer@cygnus.com>

* main.c: Wait until more time has passed before calling
        new cygwin_ funcs, revert back to the cygwin32_ ones for now.
        * win32-nat.c: Ditto.
This commit is contained in:
Geoffrey Noer 1998-11-19 21:21:34 +00:00
parent 1798621bcf
commit 1a443730ce
2 changed files with 11 additions and 5 deletions

View file

@ -1,3 +1,9 @@
Thu Nov 19 13:06:22 1998 Geoffrey Noer <noer@cygnus.com>
* main.c: Wait until more time has passed before calling
new cygwin_ funcs, revert back to the cygwin32_ ones for now.
* win32-nat.c: Ditto.
Wed Nov 18 15:03:17 1998 Andrew Cagney <cagney@chook.cygnus.com>
* 29k-share/udi/udip2soc.c (UDIConnect): Replace sys_errlist with

View file

@ -759,7 +759,7 @@ child_create_inferior (exec_file, allargs, env)
memset (&si, 0, sizeof (si));
si.cb = sizeof (si);
cygwin_conv_to_win32_path (exec_file, real_path);
cygwin32_conv_to_win32_path (exec_file, real_path);
flags = DEBUG_ONLY_THIS_PROCESS;
@ -805,9 +805,9 @@ child_create_inferior (exec_file, allargs, env)
len = strlen (conv_path_names[j]);
if (strncmp (conv_path_names[j], env[i], len) == 0)
{
if (cygwin_posix_path_list_p (env[i] + len))
if (cygwin32_posix_path_list_p (env[i] + len))
envlen += len
+ cygwin_posix_to_win32_path_list_buf_size (env[i] + len);
+ cygwin32_posix_to_win32_path_list_buf_size (env[i] + len);
else
envlen += strlen (env[i]) + 1;
break;
@ -829,10 +829,10 @@ child_create_inferior (exec_file, allargs, env)
len = strlen (conv_path_names[j]);
if (strncmp (conv_path_names[j], env[i], len) == 0)
{
if (cygwin_posix_path_list_p (env[i] + len))
if (cygwin32_posix_path_list_p (env[i] + len))
{
memcpy (temp, env[i], len);
cygwin_posix_to_win32_path_list (env[i] + len, temp + len);
cygwin32_posix_to_win32_path_list (env[i] + len, temp + len);
}
else
strcpy (temp, env[i]);