Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2000-10-13 07:13:59 +0400
committerChristopher Faylor <me@cgf.cx>2000-10-13 07:13:59 +0400
commitee20f060a813cd2588dfcdc8665737f361723289 (patch)
tree50bcfb8cb7eca1f7edf211c013d68355b5578a9e /winsup/cygwin/pinfo.cc
parent1ec4f618feb517c020ff25784bedc66dd4f6f0e2 (diff)
* dtable.cc (dtable::fixup_after_fork): Revert thinko below.
* pinfo.cc (set_myself): Show pid in initial strace line.
Diffstat (limited to 'winsup/cygwin/pinfo.cc')
-rw-r--r--winsup/cygwin/pinfo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/pinfo.cc b/winsup/cygwin/pinfo.cc
index 1ce6ace2c..f14b45c60 100644
--- a/winsup/cygwin/pinfo.cc
+++ b/winsup/cygwin/pinfo.cc
@@ -54,7 +54,7 @@ set_myself (pid_t pid, HANDLE h)
{
extern char osname[];
strace.prntf (1, NULL, "**********************************************");
- strace.prntf (1, NULL, "Program name: %s", myself->progname);
+ strace.prntf (1, NULL, "Program name: %s (%d)", myself->progname, myself->pid);
strace.prntf (1, NULL, "App version: %d.%d, api: %d.%d",
user_data->dll_major, user_data->dll_minor,
user_data->api_major, user_data->api_minor);