large array changes
This commit is contained in:
@@ -46,14 +46,15 @@ void putCallback::completion ()
|
||||
}
|
||||
|
||||
void putCallback::exception (
|
||||
int status, const char * /* pContext */ )
|
||||
int status, const char * /* pContext */,
|
||||
unsigned type, arrayElementCount count )
|
||||
{
|
||||
struct event_handler_args args;
|
||||
|
||||
args.usr = this->pPrivate;
|
||||
args.chid = & this->chan;
|
||||
args.type = TYPENOTCONN;
|
||||
args.count = 0;
|
||||
args.type = type;
|
||||
args.count = count;
|
||||
args.status = status;
|
||||
args.dbr = 0;
|
||||
( *this->pFunc ) (args);
|
||||
|
||||
Reference in New Issue
Block a user