xref: /netbsd/usr.bin/make/meta.h (revision 6550d01e)
1 /*
2  * Things needed for 'meta' mode.
3  */
4 /*
5  * Copyright (c) 2009-2010, Juniper Networks, Inc.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the copyright holders nor the names of its
16  *    contributors may be used to endorse or promote products derived
17  *    from this software without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
24  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
29  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30  */
31 
32 typedef struct BuildMon {
33     char	meta_fname[MAXPATHLEN];
34     int		filemon_fd;
35     int		mon_fd;
36     FILE	*mfp;
37 } BuildMon;
38 
39 extern Boolean useMeta;
40 
41 struct Job;				/* not defined yet */
42 void meta_init(const char *);
43 void meta_job_start(struct Job *, GNode *);
44 void meta_job_child(struct Job *);
45 void meta_job_error(struct Job *, GNode *, int, int);
46 void meta_job_output(struct Job *, char *, const char *);
47 void meta_cmd_finish(void *);
48 void meta_job_finish(struct Job *);
49 Boolean meta_oodate(GNode *, Boolean);
50 void meta_compat_start(void);
51 void meta_compat_child(void);
52 void meta_compat_parent(void);
53