@@ -33,7 +33,7 @@ z_owned_query_t *_z_query_to_owned_ptr(const z_loaned_query_t *src);
33
33
34
34
// -- Reply handler
35
35
void _z_owned_reply_move (z_owned_reply_t * dst , z_owned_reply_t * src );
36
- z_owned_reply_t * _z_reply_clone (const z_owned_reply_t * src );
36
+ z_owned_reply_t * _z_reply_to_owned_ptr (const z_loaned_reply_t * src );
37
37
38
38
// -- Channel
39
39
#define _Z_CHANNEL_DEFINE (name , send_closure_name , recv_closure_name , send_type , recv_type , collection_type , \
@@ -112,13 +112,13 @@ _Z_CHANNEL_DEFINE(query_fifo_channel, closure_query, closure_owned_query, const
112
112
_z_owned_query_move , _z_query_to_owned_ptr , z_query_drop )
113
113
114
114
// z_owned_reply_ring_channel_t
115
- _Z_CHANNEL_DEFINE (reply_ring_channel , closure_reply , closure_reply , z_owned_reply_t , z_owned_reply_t , _z_ring_mt_t ,
116
- _z_ring_mt_new , _z_ring_mt_free , _z_ring_mt_push , _z_ring_mt_pull , _z_ring_mt_try_pull ,
117
- _z_owned_reply_move , _z_reply_clone , z_reply_drop )
115
+ _Z_CHANNEL_DEFINE (reply_ring_channel , closure_reply , closure_owned_reply , const z_loaned_reply_t , z_owned_reply_t ,
116
+ _z_ring_mt_t , _z_ring_mt_new , _z_ring_mt_free , _z_ring_mt_push , _z_ring_mt_pull , _z_ring_mt_try_pull ,
117
+ _z_owned_reply_move , _z_reply_to_owned_ptr , z_reply_drop )
118
118
119
119
// z_owned_reply_fifo_channel_t
120
- _Z_CHANNEL_DEFINE (reply_fifo_channel , closure_reply , closure_reply , z_owned_reply_t , z_owned_reply_t , _z_fifo_mt_t ,
121
- _z_fifo_mt_new , _z_fifo_mt_free , _z_fifo_mt_push , _z_fifo_mt_pull , _z_fifo_mt_try_pull ,
122
- _z_owned_reply_move , _z_reply_clone , z_reply_drop )
120
+ _Z_CHANNEL_DEFINE (reply_fifo_channel , closure_reply , closure_owned_reply , const z_loaned_reply_t , z_owned_reply_t ,
121
+ _z_fifo_mt_t , _z_fifo_mt_new , _z_fifo_mt_free , _z_fifo_mt_push , _z_fifo_mt_pull , _z_fifo_mt_try_pull ,
122
+ _z_owned_reply_move , _z_reply_to_owned_ptr , z_reply_drop )
123
123
124
124
#endif // INCLUDE_ZENOH_PICO_API_HANDLERS_H
0 commit comments