blob: 52bd4db5da10c2b1dab274142d6e82e7cf60a2f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* SPDX-License-Identifier: BSD-3-Clause
* Copyright(c) 2017 Cavium, Inc
*/
#ifndef _RTE_PAUSE_H_
#define _RTE_PAUSE_H_
/**
* @file
*
* CPU pause operation.
*
*/
/**
* Pause CPU execution for a short while
*
* This call is intended for tight loops which poll a shared resource or wait
* for an event. A short pause within the loop may reduce the power consumption.
*/
static inline void rte_pause(void);
#endif /* _RTE_PAUSE_H_ */
|