blob: 78aca0949f624dfa5543ad739c62f9e53cdfeee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
/**
* @file fapiTestHwpAttr.H
*
* @brief Defines a test Hardware Procedure that exercises the test attributes
*/
/*
* Change Log ******************************************************************
* Flag Defect/Feature User Date Description
* ------ -------------- ---------- ----------- ----------------------------
* mjjones 06/30/2011 Created.
*/
#ifndef FAPITESTHWPATTR_H_
#define FAPITESTHWPATTR_H_
#include <fapi.H>
// HWPs are defined as C functions because platforms may wish to package them
// in linux shared libraries which are DL-Opened
extern "C"
{
/**
* @brief HWP that exercises attributes
*
* @param[in] i_target Reference to target (unused by HWP)
*
* @return ReturnCode
*/
fapi::ReturnCode hwpTestAttributes(const fapi::Target & i_target);
} // extern "C"
#endif // FAPITESTHWPATTR_H_
|