Thu Nov 19 13:06:22 1998 Geoffrey Noer <noer@cygnus.com>
authorGeoffrey Noer <noer@cygnus>
Thu, 19 Nov 1998 21:21:34 +0000 (21:21 +0000)
committerGeoffrey Noer <noer@cygnus>
Thu, 19 Nov 1998 21:21:34 +0000 (21:21 +0000)
        * 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.

gdb/ChangeLog
gdb/win32-nat.c

index 329765330f4e17797186affc1c69469479fda13d..bd47b8665d38d34385d9193efc0534c023f85a3c 100644 (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
index 2110e6a034f4c8c9d1746598c04a670bdc0919a1..04d8a9eff43c84d0cc240e6c16d94be67a978197 100644 (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]);