diff options
author | Christopher Faylor <me@cgf.cx> | 2003-05-19 01:43:31 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-05-19 01:43:31 +0000 |
commit | d8ee8ca551f8b7ce4e10d514b3e5a441b9ba9a2f (patch) | |
tree | ffc5f7a7abc45b9d7efce0831dbfa9f69898e94f /winsup/cygwin/spawn.cc | |
parent | de54768d724319c8b73d3598c640c70dab4c95cd (diff) | |
download | cygnal-d8ee8ca551f8b7ce4e10d514b3e5a441b9ba9a2f.tar.gz cygnal-d8ee8ca551f8b7ce4e10d514b3e5a441b9ba9a2f.tar.bz2 cygnal-d8ee8ca551f8b7ce4e10d514b3e5a441b9ba9a2f.zip |
* spawn.cc (spawn_guts): Show more of command line in strace output.
Diffstat (limited to 'winsup/cygwin/spawn.cc')
-rw-r--r-- | winsup/cygwin/spawn.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/spawn.cc b/winsup/cygwin/spawn.cc index f6863e88d..e92aa29df 100644 --- a/winsup/cygwin/spawn.cc +++ b/winsup/cygwin/spawn.cc @@ -341,7 +341,7 @@ spawn_guts (const char * prog_arg, const char *const *argv, return -1; } - syscall_printf ("spawn_guts (%d, %.132s)", mode, prog_arg); + syscall_printf ("spawn_guts (%d, %.9500s)", mode, prog_arg); if (argv == NULL) { @@ -613,7 +613,7 @@ spawn_guts (const char * prog_arg, const char *const *argv, const char *runpath = null_app_name ? NULL : (const char *) real_path; - syscall_printf ("null_app_name %d (%s, %.132s)", null_app_name, runpath, one_line.buf); + syscall_printf ("null_app_name %d (%s, %.9500s)", null_app_name, runpath, one_line.buf); void *newheap; /* Preallocated buffer for `sec_user' call */ @@ -727,7 +727,7 @@ spawn_guts (const char * prog_arg, const char *const *argv, cygpid = myself->pid; /* We print the original program name here so the user can see that too. */ - syscall_printf ("%d = spawn_guts (%s, %.132s)", + syscall_printf ("%d = spawn_guts (%s, %.9500s)", rc ? cygpid : (unsigned int) -1, prog_arg, one_line.buf); /* Name the handle similarly to proc_subproc. */ |