2005-08-18 09:34:22 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
* University Research and Technology
|
|
|
|
* Corporation. All rights reserved.
|
2014-11-28 23:31:31 +03:00
|
|
|
* Copyright (c) 2004-2014 The University of Tennessee and The University
|
2005-11-05 22:57:48 +03:00
|
|
|
* of Tennessee Research Foundation. All rights
|
|
|
|
* reserved.
|
2005-08-18 09:34:22 +04:00
|
|
|
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
* University of Stuttgart. All rights reserved.
|
|
|
|
* Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
* All rights reserved.
|
|
|
|
* $COPYRIGHT$
|
|
|
|
*
|
|
|
|
* Additional copyrights may follow
|
|
|
|
*
|
|
|
|
* $HEADER$
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPAL_TIMER_BASE_H
|
|
|
|
#define OPAL_TIMER_BASE_H
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal_config.h"
|
2013-03-28 01:11:47 +04:00
|
|
|
#include "opal/mca/base/mca_base_framework.h"
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal/mca/timer/timer.h"
|
2005-08-18 09:34:22 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Global functions for MCA overall timer open and close
|
|
|
|
*/
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
BEGIN_C_DECLS
|
2005-08-18 09:34:22 +04:00
|
|
|
|
2013-03-28 01:11:47 +04:00
|
|
|
/**
|
|
|
|
* Framework structure declaration
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC extern mca_base_framework_t opal_timer_base_framework;
|
2014-11-28 22:39:48 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MCA param to force monotonic timers.
|
|
|
|
*/
|
|
|
|
OPAL_DECLSPEC extern int mca_timer_base_monotonic;
|
|
|
|
|
2009-08-20 15:42:18 +04:00
|
|
|
END_C_DECLS
|
2005-08-21 23:14:49 +04:00
|
|
|
|
|
|
|
/* include implementation to call */
|
2006-07-16 08:23:52 +04:00
|
|
|
#include MCA_timer_IMPLEMENTATION_HEADER
|
2005-08-21 23:14:49 +04:00
|
|
|
|
2005-08-18 09:34:22 +04:00
|
|
|
#endif /* OPAL_BASE_TIMER_H */
|