From a62d4d1a408db1ef7f941e565c5d83892016d422 Mon Sep 17 00:00:00 2001 From: Dirk Zimoch Date: Mon, 11 Nov 2019 13:35:56 +0100 Subject: [PATCH] update documentation according to previous API change --- docs/businterface.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/businterface.html b/docs/businterface.html index 97d81db..0ebb2d5 100644 --- a/docs/businterface.html +++ b/docs/businterface.html @@ -69,7 +69,7 @@ class MyInterface : StreamBusInterface bool lockRequest(unsigned long lockTimeout_ms); bool unlock(); bool writeRequest(const void* output, size_t size, unsigned long writeTimeout_ms); - bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, size_t expectedLength, bool async); + bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, ssize_t expectedLength, bool async); bool supportsAsyncRead(); bool supportsEvent(); bool acceptEvent(unsigned long mask, unsigned long timeout_ms); @@ -118,7 +118,7 @@ bool writeRequest(const void* output,
bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, - size_t expectedLength, bool async); + ssize_t expectedLength, bool async);
bool supportsAsyncRead(); @@ -460,7 +460,7 @@ The client may request more I/O or call unlock() after
bool readRequest(unsigned long replyTimeout_ms, unsigned long readTimeout_ms, - size_t expectedLength, bool async); + ssize_t expectedLength, bool async);
ssize_t readCallback(IoStatus status,