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:
parent
1798621bcf
commit
1a443730ce
2 changed files with 11 additions and 5 deletions
|
@ -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>
|
Wed Nov 18 15:03:17 1998 Andrew Cagney <cagney@chook.cygnus.com>
|
||||||
|
|
||||||
* 29k-share/udi/udip2soc.c (UDIConnect): Replace sys_errlist with
|
* 29k-share/udi/udip2soc.c (UDIConnect): Replace sys_errlist with
|
||||||
|
|
|
@ -759,7 +759,7 @@ child_create_inferior (exec_file, allargs, env)
|
||||||
memset (&si, 0, sizeof (si));
|
memset (&si, 0, sizeof (si));
|
||||||
si.cb = 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;
|
flags = DEBUG_ONLY_THIS_PROCESS;
|
||||||
|
|
||||||
|
@ -805,9 +805,9 @@ child_create_inferior (exec_file, allargs, env)
|
||||||
len = strlen (conv_path_names[j]);
|
len = strlen (conv_path_names[j]);
|
||||||
if (strncmp (conv_path_names[j], env[i], len) == 0)
|
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
|
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
|
else
|
||||||
envlen += strlen (env[i]) + 1;
|
envlen += strlen (env[i]) + 1;
|
||||||
break;
|
break;
|
||||||
|
@ -829,10 +829,10 @@ child_create_inferior (exec_file, allargs, env)
|
||||||
len = strlen (conv_path_names[j]);
|
len = strlen (conv_path_names[j]);
|
||||||
if (strncmp (conv_path_names[j], env[i], len) == 0)
|
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);
|
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
|
else
|
||||||
strcpy (temp, env[i]);
|
strcpy (temp, env[i]);
|
||||||
|
|
Loading…
Add table
Reference in a new issue