2017-01-11 10:06:31 +08:00
|
|
|
#ifndef JEMALLOC_INTERNAL_TICKER_INLINES_H
|
|
|
|
#define JEMALLOC_INTERNAL_TICKER_INLINES_H
|
2016-02-03 12:27:54 +08:00
|
|
|
|
|
|
|
#ifndef JEMALLOC_ENABLE_INLINE
|
|
|
|
void ticker_init(ticker_t *ticker, int32_t nticks);
|
|
|
|
void ticker_copy(ticker_t *ticker, const ticker_t *other);
|
|
|
|
int32_t ticker_read(const ticker_t *ticker);
|
|
|
|
bool ticker_ticks(ticker_t *ticker, int32_t nticks);
|
|
|
|
bool ticker_tick(ticker_t *ticker);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if (defined(JEMALLOC_ENABLE_INLINE) || defined(JEMALLOC_TICKER_C_))
|
|
|
|
JEMALLOC_INLINE void
|
2017-01-16 08:56:30 +08:00
|
|
|
ticker_init(ticker_t *ticker, int32_t nticks) {
|
2016-02-03 12:27:54 +08:00
|
|
|
ticker->tick = nticks;
|
|
|
|
ticker->nticks = nticks;
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_INLINE void
|
2017-01-16 08:56:30 +08:00
|
|
|
ticker_copy(ticker_t *ticker, const ticker_t *other) {
|
2016-02-03 12:27:54 +08:00
|
|
|
*ticker = *other;
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_INLINE int32_t
|
2017-01-16 08:56:30 +08:00
|
|
|
ticker_read(const ticker_t *ticker) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return ticker->tick;
|
2016-02-03 12:27:54 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_INLINE bool
|
2017-01-16 08:56:30 +08:00
|
|
|
ticker_ticks(ticker_t *ticker, int32_t nticks) {
|
2016-02-03 12:27:54 +08:00
|
|
|
if (unlikely(ticker->tick < nticks)) {
|
|
|
|
ticker->tick = ticker->nticks;
|
2017-01-20 10:15:45 +08:00
|
|
|
return true;
|
2016-02-03 12:27:54 +08:00
|
|
|
}
|
|
|
|
ticker->tick -= nticks;
|
|
|
|
return(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
JEMALLOC_INLINE bool
|
2017-01-16 08:56:30 +08:00
|
|
|
ticker_tick(ticker_t *ticker) {
|
2017-01-20 10:15:45 +08:00
|
|
|
return ticker_ticks(ticker, 1);
|
2016-02-03 12:27:54 +08:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-11 10:06:31 +08:00
|
|
|
#endif /* JEMALLOC_INTERNAL_TICKER_INLINES_H */
|