1236769Sobrien/*	$NetBSD: trace.h,v 1.3 2008/04/28 20:24:14 martin Exp $	*/
2236769Sobrien
3236769Sobrien/*-
4236769Sobrien * Copyright (c) 2000 The NetBSD Foundation, Inc.
5236769Sobrien * All rights reserved.
6236769Sobrien *
7236769Sobrien * This code is derived from software contributed to The NetBSD Foundation
8236769Sobrien * by Bill Sommerfeld
9236769Sobrien *
10236769Sobrien * Redistribution and use in source and binary forms, with or without
11236769Sobrien * modification, are permitted provided that the following conditions
12236769Sobrien * are met:
13236769Sobrien * 1. Redistributions of source code must retain the above copyright
14236769Sobrien *    notice, this list of conditions and the following disclaimer.
15236769Sobrien * 2. Redistributions in binary form must reproduce the above copyright
16236769Sobrien *    notice, this list of conditions and the following disclaimer in the
17236769Sobrien *    documentation and/or other materials provided with the distribution.
18236769Sobrien *
19236769Sobrien * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
20236769Sobrien * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
21236769Sobrien * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
22236769Sobrien * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
23236769Sobrien * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
24236769Sobrien * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
25236769Sobrien * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
26236769Sobrien * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
27236769Sobrien * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28236769Sobrien * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29236769Sobrien * POSSIBILITY OF SUCH DAMAGE.
30236769Sobrien */
31236769Sobrien
32236769Sobrien/*-
33236769Sobrien * trace.h --
34236769Sobrien *	Definitions pertaining to the tracing of jobs in parallel mode.
35236769Sobrien */
36236769Sobrien
37236769Sobrientypedef enum {
38236769Sobrien	MAKESTART,
39236769Sobrien	MAKEEND,
40236769Sobrien	MAKEERROR,
41236769Sobrien	JOBSTART,
42236769Sobrien	JOBEND,
43236769Sobrien	MAKEINTR
44236769Sobrien} TrEvent;
45236769Sobrien
46236769Sobrienvoid Trace_Init(const char *);
47236769Sobrienvoid Trace_Log(TrEvent, Job *);
48236769Sobrienvoid Trace_End(void);
49236769Sobrien
50