OLD | NEW |
1 // Copyright (c) 2009 The Chromium OS Authors. All rights reserved. | 1 /* Copyright (c) 2010 The Chromium OS Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 * |
3 // found in the LICENSE file. | 3 * This program is free software; you can redistribute it and/or modify |
| 4 * it under the terms of the GNU General Public License version 2, as |
| 5 * published by the Free Software Foundation. |
| 6 * |
| 7 * This program is distributed in the hope that it will be useful, |
| 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 * GNU General Public License for more details. |
| 11 * |
| 12 * You should have received a copy of the GNU General Public License along |
| 13 * with this program; if not, write to the Free Software Foundation, Inc., |
| 14 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. |
| 15 */ |
4 | 16 |
5 #ifndef PERF_LOG_H | 17 #ifndef PERF_LOG_H |
6 #define PERF_LOG_H | 18 #define PERF_LOG_H |
7 | 19 |
8 #include "job.h" | 20 #include "job.h" |
9 | 21 |
10 NIH_BEGIN_EXTERN | 22 NIH_BEGIN_EXTERN |
11 | 23 |
12 char **get_file_fields (void *parent, | 24 char **get_file_fields (void *parent, |
13 const char *file, | 25 const char *file, |
(...skipping 10 matching lines...) Expand all Loading... |
24 | 36 |
25 void perf_log_message (const char *format, | 37 void perf_log_message (const char *format, |
26 ...); | 38 ...); |
27 | 39 |
28 void perf_log_job_state_change (Job *job, | 40 void perf_log_job_state_change (Job *job, |
29 JobState new_state); | 41 JobState new_state); |
30 | 42 |
31 NIH_END_EXTERN | 43 NIH_END_EXTERN |
32 | 44 |
33 #endif /* PERF_LOG_H */ | 45 #endif /* PERF_LOG_H */ |
OLD | NEW |