* Makefile.in: Don't do anything special with any RCS directories.

* ntdll.h (PROCESSINFOCLASS): Remove unneeded trailing comma.
* pinfo.cc (_pinfo::dup_proc_pipe): Remove unneeded assignment.
* sigproc.cc (sig_send): Don't send signal to myself if this is an exec stub.
This commit is contained in:
Christopher Faylor 2009-07-12 21:15:47 +00:00
parent 77dcafa5ad
commit 4a42a25876
5 changed files with 15 additions and 3 deletions

View File

@ -1,3 +1,14 @@
2009-07-12 Christopher Faylor <me+cygwin@cgf.cx>
* Makefile.in: Don't do anything special with any RCS directories.
* ntdll.h (PROCESSINFOCLASS): Remove unneeded trailing comma.
* pinfo.cc (_pinfo::dup_proc_pipe): Remove unneeded assignment.
* sigproc.cc (sig_send): Don't send signal to myself if this is an exec
stub.
2009-07-12 Corinna Vinschen <corinna@vinschen.de> 2009-07-12 Corinna Vinschen <corinna@vinschen.de>
* fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Don't use * fhandler_disk_file.cc (fhandler_base::fstat_by_handle): Don't use

View File

@ -496,3 +496,5 @@ deps:=${wildcard *.d}
ifneq (,$(deps)) ifneq (,$(deps))
include $(deps) include $(deps)
endif endif
%: RCS/%,v

View File

@ -471,7 +471,7 @@ typedef enum _PROCESSINFOCLASS
ProcessVmCounters = 3, ProcessVmCounters = 3,
ProcessTimes = 4, ProcessTimes = 4,
ProcessSessionInformation = 24, ProcessSessionInformation = 24,
ProcessWow64Information = 26, ProcessWow64Information = 26
} PROCESSINFOCLASS; } PROCESSINFOCLASS;
typedef struct _DEBUG_BUFFER typedef struct _DEBUG_BUFFER

View File

@ -924,7 +924,6 @@ _pinfo::dup_proc_pipe (HANDLE hProcess)
wr_proc_pipe_owner = dwProcessId; wr_proc_pipe_owner = dwProcessId;
sigproc_printf ("duped wr_proc_pipe %p for pid %d(%u)", wr_proc_pipe, sigproc_printf ("duped wr_proc_pipe %p for pid %d(%u)", wr_proc_pipe,
pid, dwProcessId); pid, dwProcessId);
res = true;
} }
return orig_wr_proc_pipe; return orig_wr_proc_pipe;
} }

View File

@ -555,7 +555,7 @@ sig_send (_pinfo *p, siginfo_t& si, _cygtls *tls)
pack.wakeup = NULL; pack.wakeup = NULL;
bool wait_for_completion; bool wait_for_completion;
if (!(its_me = (p == NULL || p == myself || p == myself_nowait))) if (!(its_me = (!hExeced && (p == NULL || p == myself || p == myself_nowait))))
{ {
/* It is possible that the process is not yet ready to receive messages /* It is possible that the process is not yet ready to receive messages
* or that it has exited. Detect this. * or that it has exited. Detect this.