aboutsummaryrefslogtreecommitdiff
path: root/src/core/aio.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/aio.h')
-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.