Changes in uspace/lib/c/generic/async.c [f302586:fbcdeb8] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/generic/async.c
rf302586 rfbcdeb8 257 257 void async_set_client_data_constructor(async_client_data_ctor_t ctor) 258 258 { 259 assert(async_client_data_create == default_client_data_constructor);260 259 async_client_data_create = ctor; 261 260 } … … 263 262 void async_set_client_data_destructor(async_client_data_dtor_t dtor) 264 263 { 265 assert(async_client_data_destroy == default_client_data_destructor);266 264 async_client_data_destroy = dtor; 267 265 } … … 305 303 void async_set_client_connection(async_client_conn_t conn) 306 304 { 307 assert(client_connection == default_client_connection);308 305 client_connection = conn; 309 306 }
Note:
See TracChangeset
for help on using the changeset viewer.