Searched refs:job (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-9.3-release/bin/sh/
H A Djobs.h44 * A job structure contains information about a job. A job is either a
62 struct job { struct
66 pid_t pgrp; /* process group of this job */
67 char state; /* true if job is finished */
73 char jobctl; /* job running under job control */
74 struct job *next; /* job use
[all...]
H A Deval.h46 struct job *jp; /* job structure for command */
H A Djobs.c78 static struct job *jobtab; /* array of jobs */
81 MKINIT struct job *bgjob = NULL; /* last background process */
83 static struct job *jobmru; /* most recently used job list */
92 static void restartjob(struct job *);
94 static void freejob(struct job *);
95 static struct job *getjob(char *);
96 static pid_t dowait(int, struct job *);
102 static void setcurjob(struct job *);
103 static void deljob(struct job *);
464 struct job *job; local
1014 dowait(int block, struct job *job) argument
[all...]
H A Deval.c417 struct job *jp;
523 struct job *jp;
571 TRACE(("evalpipe: job done exit status %d\n", exitstatus));
597 struct job *jp;
752 struct job *jp;
H A Dredir.c267 if (forkshell((struct job *)NULL, (union node *)NULL, FORK_NOJOB) == 0) {
/freebsd-9.3-release/contrib/bmake/
H A Dtrace.c52 * Trace_Log Log an event about a particular make job.
61 #include "job.h"
90 Trace_Log(TrEvent event, Job *job) argument
103 if (job != NULL) {
104 fprintf(trfile, " %s %d %x %x", job->node->name,
105 job->pid, job->flags, job->node->type);
H A Djob.c1 /* $NetBSD: job.c,v 1.176 2013/08/04 16:48:15 sjg Exp $ */
73 static char rcsid[] = "$NetBSD: job.c,v 1.176 2013/08/04 16:48:15 sjg Exp $";
78 static char sccsid[] = "@(#)job.c 8.2 (Berkeley) 3/19/94";
80 __RCSID("$NetBSD: job.c,v 1.176 2013/08/04 16:48:15 sjg Exp $");
86 * job.c --
95 * a decent clip, since job table entries aren't
121 * job table is empty.
169 #include "job.h"
228 #define JOB_ERROR 1 /* Error in starting the job */
229 #define JOB_FINISHED 2 /* The job i
398 Job *job; local
427 JobCreatePipe(Job *job, int minfd) argument
473 Job *job; local
653 Job *job; local
711 Job *job = (Job *)jobp; local
942 JobClose(Job *job) argument
981 JobFinish(Job *job, WAIT_T status) argument
1309 JobExec(Job *job, char **argv) argument
1472 JobMakeArgv(Job *job, char **argv) argument
1541 Job *job; /* new job descriptor */ local
1730 JobOutput(Job *job, char *cp, char *endp, int msg) argument
1805 JobDoOutput(Job *job, Boolean finish) argument
2015 Job *job; /* job descriptor for dead child */ local
2080 Job *job; local
2587 Job *job; /* job descriptor in that element */ local
2721 Job *job; /* the job descriptor in that element */ local
2764 Job *job; local
2790 watchfd(Job *job) argument
2803 clearfd(Job *job) argument
2822 readyfd(Job *job) argument
[all...]
H A Dmeta.c48 #include "job.h"
629 * In each case below we allow for job==NULL
632 meta_job_start(Job *job, GNode *gn) argument
636 if (job != NULL) {
637 pbm = &job->bm;
644 if (job == NULL)
661 meta_job_child(Job *job) argument
667 if (job != NULL) {
668 pbm = &job->bm;
682 meta_job_error(Job *job, GNod argument
712 meta_job_output(Job *job, char *cp, const char *nl) argument
763 meta_job_finish(Job *job) argument
[all...]
H A DMakefile16 job.c \
178 COPTS.job.c += -Wno-format-nonliteral
/freebsd-9.3-release/usr.bin/make/
H A Djob.c39 * @(#)job.c 8.2 (Berkeley) 3/19/94
46 * job.c --
55 * whole make going at a decent clip, since job table
71 * Job_Full Return TRUE if the job table is filled.
73 * Job_Empty Return TRUE if the job table is completely empty.
78 * be called when the job table is empty.
131 #include "job.h"
157 * The job "table" is kept as a linked Lst in 'jobs', with the number of
161 * When a job is finished, the Make_Update function is called on each of the
172 * A LstNode for the first command to be saved after the job complete
559 Job *job; local
650 JobPrintCommand(LstNode *cmdNode, Job *job) argument
821 JobClose(Job *job) argument
858 JobFinish(Job *job, int *status) argument
1295 JobExec(Job *job, char **argv) argument
1418 JobMakeArgv(Job *job, char **argv) argument
1466 JobRestart(Job *job) argument
1570 Job *job; /* new job descriptor */ local
1851 JobOutput(Job *job, char *cp, char *endp, int msg) argument
1918 JobDoOutput(Job *job, Boolean finish) argument
2120 Job *job; /* job descriptor for dead child */ local
2211 Job *job; local
2505 Job *job; /* job descriptor in that element */ local
2612 Job *job; /* the job descriptor in that element */ local
2647 Job *job; local
[all...]
H A DMakefile9 SRCS= arch.c buf.c cond.c dir.c for.c hash.c hash_tables.c job.c \
/freebsd-9.3-release/usr.sbin/yppush/
H A Dyppush_main.c71 /* Structure for holding information about a running job. */
108 * Report state of a job.
113 struct jobs *job; local
115 job = yppush_joblist;
117 while (job != NULL) {
118 if (job->tid == tid)
120 job = job->next;
123 if (job == NULL) {
129 if (job
281 yppush_send_xfr(struct jobs *job) argument
374 struct jobs *job; local
[all...]
/freebsd-9.3-release/usr.sbin/cron/cron/
H A Djob.c31 } job; typedef in typeref:struct:_job
34 static job *jhead = NULL, *jtail = NULL;
42 register job *j;
48 /* build a job queue element */
49 if ((j = (job*)malloc(sizeof(job))) == NULL)
51 j->next = (job*) NULL;
65 register job *j, *jn;
H A DMakefile5 SRCS= cron.c database.c do_command.c job.c user.c popen.c
/freebsd-9.3-release/share/examples/printing/
H A Dmake-ps-header19 echo "Usage: `basename $0` <user> <host> <job>" 1>&2
28 job=$3
38 % Make sure we do not interfere with user's job that will follow
70 [ ($job) ($host) ($date) ] {
/freebsd-9.3-release/lib/libncp/
H A Dncpl_queue.c43 struct queue_job *job)
50 ncp_add_mem(conn, &(job->j), sizeof(job->j));
54 memcpy(&(job->j), ncp_reply_data(conn, 0), 78);
55 ConvertToNWfromDWORD(job->j.JobFileHandle, &job->file_handle);
61 struct queue_job *job)
68 ncp_add_dword_lh(conn, job->j.JobNumber);
97 u_int16_t job_type, struct queue_job *job)
108 memcpy(&(job
42 ncp_create_queue_job_and_file(NWCONN_HANDLE connid, u_int32_t queue_id, struct queue_job *job) argument
60 ncp_close_file_and_start_job(NWCONN_HANDLE connid, u_int32_t queue_id, struct queue_job *job) argument
96 ncp_service_queue_job(NWCONN_HANDLE connid, u_int32_t queue_id, u_int16_t job_type, struct queue_job *job) argument
[all...]
/freebsd-9.3-release/usr.bin/bmake/
H A DMakefile32 job.c \
146 COPTS.job.c += -Wno-format-nonliteral
/freebsd-9.3-release/usr.sbin/lpr/lpc/
H A Dcmds.c274 * Kill the current daemon, to stop printing of the active job.
477 * `tf', it sorts by job number and machine, then by `cf', `df', `rf', or
502 * same for 'a' vs 'b', so define a macro for the job.
506 * file-sequence letter, and start the job number in position 5.]
557 * or `tf' files. Compare them by job-number and machine name.
564 * We have two files which belong to the same job. Sort based
576 * Two files in the same catagory for a single job. Sort based
1099 * Stop the specified daemon after completing the current job and disable
1182 * get lpd to rebuild the queue after the current job.
1193 * Reposition the job b
1215 doarg(char *job) argument
[all...]
/freebsd-9.3-release/sys/kern/
H A Dvfs_aio.c230 int jobflags; /* (a) job flags */
231 int jobstate; /* (b) job state */
240 struct aioliojob *lio; /* (*) optional lio job */
246 uint64_t seqno; /* (*) job number */
299 TAILQ_HEAD(,aiocblist) kaio_jobqueue; /* (a) job queue for process */
300 TAILQ_HEAD(,aiocblist) kaio_bufqueue; /* (a) buffer job queue for process */
334 static TAILQ_HEAD(,aiocblist) aio_jobs; /* (c) Async job list */
342 int aio_aqueue(struct thread *td, struct aiocb *job,
370 * aiol list io job pointer - internal to aio_suspend XXX
630 * Free a job entr
1524 aio_aqueue(struct thread *td, struct aiocb *job, struct aioliojob *lj, int type, struct aiocb_ops *ops) argument
[all...]
/freebsd-9.3-release/contrib/llvm/tools/clang/include/clang/AST/
H A DRecursiveASTVisitor.h450 EnqueueJob &job = Queue.back(); local
451 Stmt *CurrS = job.S;
458 if (job.StmtIt == Stmt::child_iterator()) {
465 job.StmtIt = CurrS->child_begin();
467 ++job.StmtIt;
470 if (job.StmtIt != CurrS->child_end())
471 Queue.push_back(*job.StmtIt);
/freebsd-9.3-release/usr.bin/at/
H A Dat.c107 char atverify = 0; /* verify time instead of queuing job */
209 /* This does most of the work if at or batch are invoked for writing a job.
265 perr("cannot generate job number");
288 perr("error in dup() of job file");
445 in_job_list(long job, long *joblist, int len) argument
450 if (job == joblist[i])
533 /* Delete every argument (job - ID) given
724 panic("invalid job number");
784 case 'm': /* send mail when job is complete */
/freebsd-9.3-release/etc/
H A Dservices710 opc-job-start 423/tcp #IBM Operations Planning and Control Start
711 opc-job-start 423/udp #IBM Operations Planning and Control Start
712 opc-job-track 424/tcp #IBM Operations Planning and Control Track
713 opc-job-track 424/udp #IBM Operations Planning and Control Track
/freebsd-9.3-release/contrib/llvm/tools/clang/lib/AST/
H A DExprConstant.cpp6498 Job &job = Queue.back();
6500 switch (job.Kind) {
6502 if (const BinaryOperator *Bop = dyn_cast<BinaryOperator>(job.E)) {
6504 job.Kind = Job::BinOpKind;
6510 EvaluateExpr(job.E, Result);
6516 const BinaryOperator *Bop = cast<BinaryOperator>(job.E);
6523 job.startSpeculativeEval(Info);
6524 job.LHSResult.swap(Result);
6525 job.Kind = Job::BinOpVisitedLHSKind;
6531 const BinaryOperator *Bop = cast<BinaryOperator>(job
[all...]
/freebsd-9.3-release/contrib/tcsh/
H A Dcomplete.tcsh1127 info integrate integrated job jobs jobspec label labels \
1156 header-font= fancy-header no-job-header \
/freebsd-9.3-release/sys/dev/isp/
H A DDriverManual.txt260 to do its job. These are discussed in detail in the comments in the

Completed in 373 milliseconds

12