Searched refs:jobs (Results 1 - 25 of 30) sorted by relevance

12

/freebsd-current/contrib/bmake/unit-tests/
H A Dopt-query.exp15 Making opt-query-file.out-of-date in jobs mode:
16 opt-query-file.out-of-date in jobs mode: query status 1
18 Making opt-query-file.up-to-date in jobs mode:
19 opt-query-file.up-to-date in jobs mode: query status 0
21 Making phony in jobs mode:
22 phony in jobs mode: query status 1
H A Ddepsrc-meta.exp5 Targets from meta mode in jobs mode:
H A Djobs-error-nested-make.exp1 make -f jobs-error-nested-make.mk nested
H A Dopt-keep-going-indirect.exp9 direct jobs
25 indirect jobs
H A Dvarname-dot-make-jobs.mk1 # $NetBSD: varname-dot-make-jobs.mk,v 1.5 2023/09/10 16:25:32 sjg Exp $
3 # Tests for the special .MAKE.JOBS variable, which is defined in jobs mode
4 # only. There it contains the number of jobs that may run in parallel.
H A Dvarname-dot-make-mode.exp11 randomize jobs mode (-j1):
21 randomize jobs mode (-j5):
H A Dsh-errctl.exp19 JobExec(all): pid <pid> added to jobs table
H A Djobs-error-nested.exp1 make -f jobs-error-nested.mk nested
H A Djob-output-long-lines.mk3 # The jobs may produce long lines of output. A practical case are the echoed
7 # The markers for switching jobs must always be written at the beginning of
H A Dopt-debug-jobs.exp17 JobExec(all): pid <pid> added to jobs table
H A Dopt-query.mk16 # reported in both compat and jobs mode, and for several
36 . for mode in compat jobs
52 # expect: opt-query-file.out-of-date in jobs mode: query status 1
53 # expect: opt-query-file.up-to-date in jobs mode: query status 0
54 # expect: phony in jobs mode: query status 1
H A Dsh-flags.mk19 opt-jobs.yes= -j1
34 letter.jobs.yes= j
42 .for opt-jobs in no yes
53 target+= ${letter.jobs.${opt-jobs}:U_}
63 MAKE_CMD.${target}+= ${opt-jobs.${opt-jobs}}
H A Dopt-no-action-runflags.mk7 # opt-jobs-no-action.mk
H A Ddepsrc-meta.mk21 @echo 'Targets from meta mode${.MAKE.JOBS:D in jobs mode}:'
H A Dopt-debug-errors-jobs.mk1 # $NetBSD: opt-debug-errors-jobs.mk,v 1.2 2021/11/27 23:56:11 rillig Exp $
4 # failed commands and targets; since 2021-04-27 also in jobs mode.
H A Dopt-jobs-no-action.mk1 # $NetBSD: opt-jobs-no-action.mk,v 1.10 2022/05/08 06:51:27 rillig Exp $
11 # opt-jobs.mk
18 # Change the templates for running the commands in jobs mode, to make it
H A Dsh-errctl.mk3 # Test a shell with error control. This only works in jobs mode; in compat
H A Dvarname-make_print_var_on_error-jobs.mk1 # $NetBSD: varname-make_print_var_on_error-jobs.mk,v 1.4 2023/11/19 22:32:44 rillig Exp $
/freebsd-current/share/mk/
H A Djobs.mk1 # $Id: jobs.mk,v 1.14 2023/09/11 16:52:44 sjg Exp $
19 # .if make(*-jobs)
20 # .include <jobs.mk>
26 # mk target-jobs
44 .if make(*-jobs)
48 JOB_LOG = ${JOB_LOGDIR}/${.TARGET:S,-jobs,,:S,/,_,g}.log
90 ${.TARGETS:M*-jobs}:
92 @echo "${TIME_STAMP} Start ${.TARGET:S,-jobs,,} ${JOB_ARGS} ${JOB_LOG_START} log=${JOB_LOG}" | tee ${JOB_LOG}
94 ${.MAKE} ${JOB_ARGS} _TARGETS=${.TARGET:S,-jobs,,} ${.TARGET:S,-jobs,,} >>
[all...]
/freebsd-current/contrib/bmake/mk/
H A Djobs.mk3 # $Id: jobs.mk,v 1.17 2024/02/17 17:26:57 sjg Exp $
21 # .if make(*-jobs)
22 # .include <jobs.mk>
28 # mk target-jobs
46 .if make(*-jobs)
50 JOB_LOG = ${JOB_LOGDIR}/${.TARGET:S,-jobs,,:S,/,_,g}.log
93 ${.TARGETS:M*-jobs}:
95 @echo "${TIME_STAMP} Start ${.TARGET:S,-jobs,,} ${JOB_ARGS} ${JOB_LOG_START} log=${JOB_LOG}" | tee ${JOB_LOG}
97 ${.MAKE} ${JOB_ARGS} _TARGETS=${.TARGET:S,-jobs,,} ${.TARGET:S,-jobs,,} >>
[all...]
/freebsd-current/sys/contrib/zstd/lib/compress/
H A Dzstdmt_compress.c597 /* Now it is the next jobs turn */
802 BYTE* buffer; /* The round input buffer. All jobs get references
836 ZSTDMT_jobDescription* jobs; member in struct:ZSTDMT_CCtx_s
900 ZSTDMT_freeJobsTable(mtctx->jobs, mtctx->jobIDMask+1, mtctx->cMem);
902 mtctx->jobs = ZSTDMT_createJobsTable(&nbJobs, mtctx->cMem);
903 if (mtctx->jobs==NULL) return ERROR(memory_allocation);
944 mtctx->jobs = ZSTDMT_createJobsTable(&nbJobs, cMem);
952 if (!mtctx->factory | !mtctx->jobs | !mtctx->bufPool | !mtctx->cctxPool | !mtctx->seqPool | initError) {
981 ZSTD_pthread_mutex_t const mutex = mtctx->jobs[jobID].job_mutex;
982 ZSTD_pthread_cond_t const cond = mtctx->jobs[jobI
[all...]
/freebsd-current/crypto/openssl/crypto/async/
H A Dasync.c112 * no max size and no pre-created jobs
119 job = sk_ASYNC_JOB_pop(pool->jobs);
147 sk_ASYNC_JOB_push(pool->jobs, job);
324 if (pool == NULL || pool->jobs == NULL)
328 job = sk_ASYNC_JOB_pop(pool->jobs);
374 pool->jobs = sk_ASYNC_JOB_new_reserve(NULL, init_size);
375 if (pool->jobs == NULL) {
383 /* Pre-create jobs as required */
390 * skip creation of any more jobs
396 sk_ASYNC_JOB_push(pool->jobs, jo
[all...]
H A Dasync_local.h71 STACK_OF(ASYNC_JOB) *jobs; member in struct:async_pool_st
/freebsd-current/usr.sbin/yppush/
H A Dyppush_main.c68 static int yppush_jobs = 1; /* Number of allowed concurrent jobs. */
69 static int yppush_running_jobs = 0; /* Number of currently running jobs. */
72 struct jobs { struct
80 struct jobs *next;
83 static struct jobs *yppush_joblist; /* Linked list of running jobs. */
112 struct jobs *job;
160 struct jobs *jptr;
279 yppush_send_xfr(struct jobs *job)
372 struct jobs *jo
[all...]
/freebsd-current/crypto/openssl/test/
H A Drun_tests.pl34 my $jobs = $ENV{HARNESS_JOBS} // 1;
50 if ($jobs > 1) {
54 $tapargs{jobs} = $jobs;
55 print "Using HARNESS_JOBS=$jobs\n";
85 if ($jobs > 1 && $key =~ m/test_ssl_new|test_fuzz/) {

Completed in 365 milliseconds

12