Use PRI_PIDT_PREFIX for results of getpid()
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63827 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
482bbde6e2
commit
ad0169421f
4
mjit.c
4
mjit.c
@ -268,7 +268,7 @@ real_ms_time(void)
|
|||||||
static int
|
static int
|
||||||
sprint_uniq_filename(char *str, size_t size, unsigned long id, const char *prefix, const char *suffix)
|
sprint_uniq_filename(char *str, size_t size, unsigned long id, const char *prefix, const char *suffix)
|
||||||
{
|
{
|
||||||
return snprintf(str, size, "%s/%sp%luu%lu%s", tmp_dir, prefix, (unsigned long) getpid(), id, suffix);
|
return snprintf(str, size, "%s/%sp%"PRI_PIDT_PREFIX"uu%lu%s", tmp_dir, prefix, getpid(), id, suffix);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Return an unique file name in /tmp with PREFIX and SUFFIX and
|
/* Return an unique file name in /tmp with PREFIX and SUFFIX and
|
||||||
@ -422,7 +422,7 @@ exec_process(const char *path, char *const argv[])
|
|||||||
: waitpid(pid, &stat, 0);
|
: waitpid(pid, &stat, 0);
|
||||||
if (r == -1) {
|
if (r == -1) {
|
||||||
if (errno == EINTR) continue;
|
if (errno == EINTR) continue;
|
||||||
fprintf(stderr, "[%d] waitpid(%"PRI_PIDT_PREFIX"d): %s (SIGCHLD=%d,%u)\n",
|
fprintf(stderr, "[%"PRI_PIDT_PREFIX"d] waitpid(%"PRI_PIDT_PREFIX"d): %s (SIGCHLD=%d,%u)\n",
|
||||||
getpid(), pid, strerror(errno),
|
getpid(), pid, strerror(errno),
|
||||||
RUBY_SIGCHLD, SIGCHLD_LOSSY);
|
RUBY_SIGCHLD, SIGCHLD_LOSSY);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user