diff options
author | Eli Zaretskii <eliz@gnu.org> | 2010-07-09 11:10:04 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2010-07-09 11:10:04 +0000 |
commit | 4e4d8f246f82d492fb71bc599813016ef97be397 (patch) | |
tree | cc083fe16c68e8634a8d8b7054a5b34253993a55 /ChangeLog | |
parent | 8a0f9d7b429b32b106d8f46d32c8d5213683fbda (diff) | |
download | gunmake-4e4d8f246f82d492fb71bc599813016ef97be397.tar.gz |
job.c (pid2str) [WINDOWS32]: Don't use %Id with GCC < 4.x.
(exec_command) [WINDOWS32]: Use pid2str instead of non-portable
%Id.
main.c (handle_runtime_exceptions): Use %p to print addresses,
to DTRT on both 32-bit and 64-bit hosts. Savannah bug #27809.
job.c (w32_kill, start_job_command, create_batch_file): Use
pid_t for process IDs and intptr_t for the 1st arg of
_open_osfhandle.
function.c (windows32_openpipe): Use pid_t for process IDs and
intptr_t for the 1st arg of _open_osfhandle.
(func_shell): Use pid_t for process IDs.
main.c (main) [WINDOWS32]: Pacify the compiler.
config.h.W32.template (pid_t): Add a definition for 64-bit
Windows builds that don't use GCC.
Savannah bug #27809. Patch by Ozkan Sezer <sezeroz@gmail.com>
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -1,3 +1,23 @@ +2010-07-09 Eli Zaretskii <eliz@gnu.org> + + * job.c (pid2str) [WINDOWS32]: Don't use %Id with GCC < 4.x. + (exec_command) [WINDOWS32]: Use pid2str instead of non-portable + %Id. + + * main.c (handle_runtime_exceptions): Use %p to print addresses, + to DTRT on both 32-bit and 64-bit hosts. Savannah bug #27809. + + * job.c (w32_kill, start_job_command, create_batch_file): Use + pid_t for process IDs and intptr_t for the 1st arg of + _open_osfhandle. + * function.c (windows32_openpipe): Use pid_t for process IDs and + intptr_t for the 1st arg of _open_osfhandle. + (func_shell): Use pid_t for process IDs. + * main.c (main) [WINDOWS32]: Pacify the compiler. + * config.h.W32.template (pid_t): Add a definition for 64-bit + Windows builds that don't use GCC. + Savannah bug #27809. Patch by Ozkan Sezer <sezeroz@gmail.com> + 2010-07-06 Paul Smith <psmith@gnu.org> * main.c (main): Set a default value of "-c" for .SHELLFLAGS. |