diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2023-10-13 20:43:27 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2023-11-16 22:07:15 -0500 |
commit | 48a05eaa542bfd4a1099c2224bda443049a6fa64 (patch) | |
tree | acda1bae545fdf49e6b4ca8dd3f3b7b857143df8 /klippy/chelper/stepcompress.h | |
parent | 4688c21c54dfb89ef9902b607521a8cc0e99c94a (diff) | |
download | kutter-48a05eaa542bfd4a1099c2224bda443049a6fa64.tar.gz kutter-48a05eaa542bfd4a1099c2224bda443049a6fa64.tar.xz kutter-48a05eaa542bfd4a1099c2224bda443049a6fa64.zip |
stepcompress: Add support for queuing messages that consume move queue space
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'klippy/chelper/stepcompress.h')
-rw-r--r-- | klippy/chelper/stepcompress.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/klippy/chelper/stepcompress.h b/klippy/chelper/stepcompress.h index b8a95057..bfc0dfcd 100644 --- a/klippy/chelper/stepcompress.h +++ b/klippy/chelper/stepcompress.h @@ -29,6 +29,8 @@ int stepcompress_set_last_position(struct stepcompress *sc, uint64_t clock int64_t stepcompress_find_past_position(struct stepcompress *sc , uint64_t clock); int stepcompress_queue_msg(struct stepcompress *sc, uint32_t *data, int len); +int stepcompress_queue_mq_msg(struct stepcompress *sc, uint64_t req_clock + , uint32_t *data, int len); int stepcompress_extract_old(struct stepcompress *sc , struct pull_history_steps *p, int max , uint64_t start_clock, uint64_t end_clock); |