diff options
author | Christopher Faylor <me@cgf.cx> | 2002-05-29 17:12:07 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2002-05-29 17:12:07 +0000 |
commit | 9fef0139c27845ac3ae01e63b80f34ba4207a51d (patch) | |
tree | 3d8c39e839cc8b12706267c97d11709c5e4f16b7 /winsup/cygwin/external.cc | |
parent | 642745443ff390113e676cb28dd26dee1642ad70 (diff) | |
download | newlib-9fef0139c27845ac3ae01e63b80f34ba4207a51d.zip newlib-9fef0139c27845ac3ae01e63b80f34ba4207a51d.tar.gz newlib-9fef0139c27845ac3ae01e63b80f34ba4207a51d.tar.bz2 |
* external.cc (fillout_pinfo): Set new version field in external_pinfo
structure.
* include/sys/cygwin.h (external_pinfo): Replace strace_file with version
field.
Diffstat (limited to 'winsup/cygwin/external.cc')
-rw-r--r-- | winsup/cygwin/external.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/external.cc b/winsup/cygwin/external.cc index 8a06f02..00ab2ac 100644 --- a/winsup/cygwin/external.cc +++ b/winsup/cygwin/external.cc @@ -1,6 +1,6 @@ /* external.cc: Interface to Cygwin internals from external programs. - Copyright 1997, 1998, 1999, 2000, 2001 Red Hat, Inc. + Copyright 1997, 1998, 1999, 2000, 2001, 2002 Red Hat, Inc. Written by Christopher Faylor <cgf@cygnus.com> @@ -83,7 +83,7 @@ fillout_pinfo (pid_t pid, int winpid) ep.rusage_children = p->rusage_children; strcpy (ep.progname, p->progname); ep.strace_mask = 0; - ep.strace_file = 0; + ep.version = EXTERNAL_PINFO_VERSION; ep.process_state = p->process_state; |