Blame src/libpfm-3.y/examples_v2.x/detect_pmcs.h

Packit 577717
/*
Packit 577717
 * detect_pmcs.h - detect unavailable PMD/PMC registers based on perfmon2 information
Packit 577717
 *
Packit 577717
 * Copyright (c) 2006-2007 Hewlett-Packard Development Company, L.P.
Packit 577717
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
 *
Packit 577717
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 577717
 * of this software and associated documentation files (the "Software"), to deal
Packit 577717
 * in the Software without restriction, including without limitation the rights
Packit 577717
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 577717
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit 577717
 * subject to the following conditions:
Packit 577717
 *
Packit 577717
 * The above copyright notice and this permission notice shall be included in all
Packit 577717
 * copies or substantial portions of the Software.
Packit 577717
 *
Packit 577717
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit 577717
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit 577717
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit 577717
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit 577717
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit 577717
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
 *
Packit 577717
 * This file is part of libpfm, a performance monitoring support library for
Packit 577717
 * applications on Linux.
Packit 577717
 */
Packit 577717
#ifndef __DETECT_PMCS_H__
Packit 577717
#define __DETECT_PMCS_H__
Packit 577717
Packit 577717
#include <perfmon/pfmlib.h>
Packit 577717
Packit 577717
/*
Packit 577717
 * if no context exists, pass -1 for fd
Packit 577717
 * if do not care about PMCS, pass r_pmcs as NULL
Packit 577717
 * if do not care about PMDs, pass r_pmds as NULL
Packit 577717
 */
Packit 577717
extern int detect_unavail_pmu_regs(int fd, pfmlib_regmask_t *r_pmcs, pfmlib_regmask_t *r_pmds);
Packit 577717
Packit 577717
static inline int detect_unavail_pmcs(int fd, pfmlib_regmask_t *r_pmcs)
Packit 577717
{
Packit 577717
	return detect_unavail_pmu_regs(fd, r_pmcs, NULL);
Packit 577717
}
Packit 577717
Packit 577717
#endif /* __DETECT_PMCS_H__ */