mirror of
git://sigrok.org/libserialport
synced 2023-08-10 21:13:24 +03:00
Add SP_ERR_MEM failure code.
This commit is contained in:
5
README
5
README
@@ -65,9 +65,10 @@ Most functions take a pointer to a struct sp_port, which represents an open
|
||||
port. This structure should be allocated by the user and is populated by
|
||||
sp_open(). It can be freed safely after sp_close().
|
||||
|
||||
All functions can return only two possible error values. SP_ERR_ARG indicates
|
||||
All functions can return only three possible error values. SP_ERR_ARG indicates
|
||||
the function was called with invalid arguments. SP_ERR_FAIL indicates that the
|
||||
OS reported a failure. Both these error values are negative.
|
||||
OS reported a failure. SP_ERR_MEM indicates that a memory allocation failed.
|
||||
Aoth these error values are negative.
|
||||
|
||||
When SP_ERR_FAIL is returned, an error code or string description of the error
|
||||
can be obtained by calling sp_last_error_code() or sp_last_error_message(). The
|
||||
|
||||
Reference in New Issue
Block a user