Blame libhugetlbfs_testprobes.h

Packit 2d622a
/*
Packit 2d622a
 * libhugetlbfs - Easy use of Linux hugepages
Packit 2d622a
 * Copyright (C) 2008 IBM Corporation, author: Andy Whitcroft
Packit 2d622a
 *
Packit 2d622a
 * This library is free software; you can redistribute it and/or
Packit 2d622a
 * modify it under the terms of the GNU Lesser General Public License
Packit 2d622a
 * as published by the Free Software Foundation; either version 2.1 of
Packit 2d622a
 * the License, or (at your option) any later version.
Packit 2d622a
 *
Packit 2d622a
 * This library is distributed in the hope that it will be useful, but
Packit 2d622a
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 2d622a
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 2d622a
 * Lesser General Public License for more details.
Packit 2d622a
 *
Packit 2d622a
 * You should have received a copy of the GNU Lesser General Public
Packit 2d622a
 * License along with this library; if not, write to the Free Software
Packit 2d622a
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Packit 2d622a
 */
Packit 2d622a
Packit 2d622a
/*
Packit 2d622a
 * This file should only contain definitions of functions, data types, and
Packit 2d622a
 * constants which are part of the internal library test probe interfaces.
Packit 2d622a
 * These are exposed only to utilities and tests within the source, this is
Packit 2d622a
 * not a public interface nor part of the libhugetlfs API.
Packit 2d622a
 *
Packit 2d622a
 * All functions declared external here must be externalised using a define
Packit 2d622a
 * of the following form:
Packit 2d622a
 *
Packit 2d622a
 * 	#define foo __tp_foo
Packit 2d622a
 */
Packit 2d622a
Packit 2d622a
#ifndef _LIBHUGETLBFS_TESTPROBES_H
Packit 2d622a
#define _LIBHUGETLBFS_TESTPROBES_H
Packit 2d622a
Packit 2d622a
#define kernel_default_hugepage_size_reset \
Packit 2d622a
		__tp_kernel_default_hugepage_size_reset
Packit 2d622a
void kernel_default_hugepage_size_reset(void);
Packit 2d622a
Packit 2d622a
#endif /* _LIBHUGETLBFS_TESTPROBES_H */