aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2020-11-10 14:36:56 -0800
committerGarrett D'Amore <garrett@damore.org>2020-11-10 14:36:56 -0800
commit53f20bbc4a2bd0d333e0307640883a778de31e2b (patch)
tree9c87c59df611ba8a17630ea1db15e35eb231f5de
parente10f53cbaf9011e77044822080db134e1bd8a0fd (diff)
downloadnng-53f20bbc4a2bd0d333e0307640883a778de31e2b.tar.gz
nng-53f20bbc4a2bd0d333e0307640883a778de31e2b.tar.bz2
nng-53f20bbc4a2bd0d333e0307640883a778de31e2b.zip
Remove left over function prototypes.
-rw-r--r--src/core/aio.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/src/core/aio.h b/src/core/aio.h
index a46c1feb..80f48341 100644
--- a/src/core/aio.h
+++ b/src/core/aio.h
@@ -57,17 +57,6 @@ extern void nni_aio_stop(nni_aio *);
// them.
extern void nni_aio_close(nni_aio *);
-// nni_aio_set_data sets user data. This should only be done by the
-// consumer, initiating the I/O. The intention is to be able to store
-// additional data for use when the operation callback is executed.
-// The index represents the "index" at which to store the data. A maximum
-// of 4 elements can be stored with the (index < 4).
-extern void nni_aio_set_data(nni_aio *, unsigned, void *);
-
-// nni_aio_get_data returns the user data that was previously stored
-// with nni_aio_set_data.
-extern void *nni_aio_get_data(nni_aio *, unsigned);
-
// nni_set_input sets input parameters on the AIO. The semantic details
// of this will be determined by the specific AIO operation. AIOs can
// carry up to 4 input parameters.