CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
orangepi-xunlong

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.

GitHub Repository: orangepi-xunlong/orangepi-build
Path: blob/next/external/cache/sources/wl/include/bcmperf.h
Views: 3959
1
/*
2
* Performance counters software interface.
3
*
4
* $Copyright Open Broadcom Corporation$
5
*
6
* $Id: bcmperf.h 241182 2011-02-17 21:50:03Z $
7
*/
8
/* essai */
9
#ifndef _BCMPERF_H_
10
#define _BCMPERF_H_
11
/* get cache hits and misses */
12
#define BCMPERF_ENABLE_INSTRCOUNT()
13
#define BCMPERF_ENABLE_ICACHE_MISS()
14
#define BCMPERF_ENABLE_ICACHE_HIT()
15
#define BCMPERF_GETICACHE_MISS(x) ((x) = 0)
16
#define BCMPERF_GETICACHE_HIT(x) ((x) = 0)
17
#define BCMPERF_GETINSTRCOUNT(x) ((x) = 0)
18
#endif /* _BCMPERF_H_ */
19
20