|
1 | | -/* $NetBSD: job.c,v 1.523 2026/02/28 22:06:38 christos Exp $ */ |
| 1 | +/* $NetBSD: job.c,v 1.524 2026/02/28 22:58:00 christos Exp $ */ |
2 | 2 |
|
3 | 3 | /* |
4 | 4 | * Copyright (c) 1988, 1989, 1990 The Regents of the University of California. |
|
124 | 124 | #include "trace.h" |
125 | 125 |
|
126 | 126 | /* "@(#)job.c 8.2 (Berkeley) 3/19/94" */ |
127 | | -MAKE_RCSID("$NetBSD: job.c,v 1.523 2026/02/28 22:06:38 christos Exp $"); |
| 127 | +MAKE_RCSID("$NetBSD: job.c,v 1.524 2026/02/28 22:58:00 christos Exp $"); |
128 | 128 |
|
129 | 129 |
|
130 | 130 | #ifdef USE_SELECT |
@@ -979,8 +979,8 @@ MaybeSubMake(const char *cmd) |
979 | 979 | for (p = strstr(cmd, make); p != NULL; p = strstr(&p[1], make)) { |
980 | 980 | if (p == cmd || p[-1] == '/' || ch_isspace(p[-1])) { |
981 | 981 | if (p[len] == '\0' || ch_isspace(p[len])) { |
982 | | - DEBUG1(JOB, "MaybeSubMake: matched \"%.16s...\"\n", |
983 | | - p); |
| 982 | + DEBUG2(JOB, "%s: matched \"%.16s...\"\n", |
| 983 | + __func__, p); |
984 | 984 | return true; |
985 | 985 | } |
986 | 986 | } |
@@ -1632,8 +1632,8 @@ JobExec(Job *job, char **argv) |
1632 | 1632 |
|
1633 | 1633 | if (DEBUG(JOB)) { |
1634 | 1634 | debug_printf( |
1635 | | - "JobExec: target %s, pid %d added to jobs table\n", |
1636 | | - job->node->name, job->pid); |
| 1635 | + "%s: target %s, pid %d added to jobs table\n", |
| 1636 | + __func__, job->node->name, job->pid); |
1637 | 1637 | JobTable_Dump("job started"); |
1638 | 1638 | } |
1639 | 1639 | JobsTable_Unlock(&mask); |
|
0 commit comments