propagate of 82bb923d0154750ef716b66b498561f882891946 and f51a272341ee12268fe7028bc2f2bad66c603069 from branch 'matt.dbclient.work' to 'matt.dbclient.rez'

--HG--
branch : private-rez
extra : convert_revision : 440ee4177122c8a873ebf8984a90f96a9bd8a56a
This commit is contained in:
Matt Johnston
2004-09-21 10:08:21 +00:00
parent 6766dfae26
commit c2af67efd3
3 changed files with 76 additions and 38 deletions

View File

@@ -29,6 +29,14 @@
#include "channel.h"
#include "listener.h"
struct exitinfo {
int exitpid; /* -1 if not exited */
int exitstatus;
int exitsignal;
int exitcore;
};
struct ChanSess {
unsigned char * cmd; /* command to exec */
@@ -41,10 +49,7 @@ struct ChanSess {
unsigned char * term;
/* exit details */
int exited;
int exitstatus;
int exitsignal;
unsigned char exitcore;
struct exitinfo exit;
#ifndef DISABLE_X11FWD
struct Listener * x11listener;