diff options
| author | Garrett D'Amore <garrett@damore.org> | 2020-12-19 10:21:54 -0800 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2020-12-19 12:50:05 -0800 |
| commit | d12e169c1e733b255d146847ed57037b74681285 (patch) | |
| tree | e4a59142a6cf097dfdda8620635f173f53db9e7a /src/core/aio.h | |
| parent | 2033988343bce413763d3e9664e3e8372da48591 (diff) | |
| download | nng-d12e169c1e733b255d146847ed57037b74681285.tar.gz nng-d12e169c1e733b255d146847ed57037b74681285.tar.bz2 nng-d12e169c1e733b255d146847ed57037b74681285.zip | |
fixes #1372 nni_reap could be smaller
Diffstat (limited to 'src/core/aio.h')
| -rw-r--r-- | src/core/aio.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/aio.h b/src/core/aio.h index dbe7fbb9..e108e4b8 100644 --- a/src/core/aio.h +++ b/src/core/aio.h @@ -13,6 +13,7 @@ #include "core/defs.h" #include "core/list.h" +#include "core/reap.h" #include "core/taskq.h" #include "core/thread.h" @@ -200,7 +201,7 @@ struct nng_aio { void * a_prov_extra[2]; // Extra data used by provider nni_list_node a_expire_node; // Expiration node - struct nng_aio *a_reap_next; + nni_reap_node a_reap_node; }; #endif // CORE_AIO_H |
