mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-04 17:31:10 +08:00
f5ea202e25
These (called session_ack_{data,mem} before) were removed in error.
13 lines
280 B
C
13 lines
280 B
C
#ifndef __SESSION_H
|
|
#define __SESSION_H
|
|
|
|
void session_start(void);
|
|
void session_end(void);
|
|
|
|
int session_input(void *data, int length);
|
|
void session_poll(void **data, int *length);
|
|
void session_ack_consumed(int length);
|
|
void session_ack_sent(int length);
|
|
|
|
#endif /* __SESSION_H */
|