diff options
| author | 2025-11-30 18:26:31 -0500 | |
|---|---|---|
| committer | 2025-11-30 18:26:31 -0500 | |
| commit | c6a78e2502fd3f7deabecbf48970f346424106f6 (patch) | |
| tree | 4564443ec04438d4c878203029f7abf53437c287 /src/liana | |
| parent | c8412bbedae0fce38db96833732e8ce904721e4c (diff) | |
| download | camu-c6a78e2502fd3f7deabecbf48970f346424106f6.tar.gz camu-c6a78e2502fd3f7deabecbf48970f346424106f6.tar.bz2 camu-c6a78e2502fd3f7deabecbf48970f346424106f6.zip | |
Pass on atomic usage
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'src/liana')
| -rw-r--r-- | src/liana/list.c | 1 | ||||
| -rw-r--r-- | src/liana/list.h | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/liana/list.c b/src/liana/list.c index 253ba5f..cd073ad 100644 --- a/src/liana/list.c +++ b/src/liana/list.c @@ -46,7 +46,6 @@ void lia_list_init(struct lia_list *list, str *name) // These small functions may seem excessive but their purpose is an attempt // to reduce noise in parts that are harder to understand. - static inline void list_signal_meta(struct lia_list *list, struct lia_list_entry *entry, u8 meta) { list->callback(list->userdata, LIANA_LIST_META, entry, (u8[]){ meta }); diff --git a/src/liana/list.h b/src/liana/list.h index c8b1d73..e8b1769 100644 --- a/src/liana/list.h +++ b/src/liana/list.h @@ -8,7 +8,7 @@ #define LIANA_SEQUENCE_ANY -1 -#define LIANA_BASE_DELAY 450000u // 450ms +#define LIANA_BASE_DELAY 1250000u // 1250ms #define LIANA_BASE_PING 150000u // 150ms #define LIANA_PAUSE_DELAY LIANA_BASE_PING #define LIANA_DELAY_IGNORE 0u |