mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-14 23:09:16 +00:00
Implement atomic swar token bucket library
This commit is contained in:
parent
c19ac8729d
commit
e7329b7cba
3 changed files with 176 additions and 0 deletions
13
net/http/tokenbucket.h
Normal file
13
net/http/tokenbucket.h
Normal file
|
@ -0,0 +1,13 @@
|
|||
#ifndef COSMOPOLITAN_NET_HTTP_TOKENBUCKET_H_
|
||||
#define COSMOPOLITAN_NET_HTTP_TOKENBUCKET_H_
|
||||
#include "libc/atomic.h"
|
||||
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
||||
COSMOPOLITAN_C_START_
|
||||
|
||||
void ReplenishTokens(atomic_uint_fast64_t *, size_t);
|
||||
bool AcquireToken(atomic_schar *, uint32_t, int);
|
||||
int CountTokens(atomic_schar *, uint32_t, int);
|
||||
|
||||
COSMOPOLITAN_C_END_
|
||||
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
||||
#endif /* COSMOPOLITAN_NET_HTTP_TOKENBUCKET_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue