diff options
Diffstat (limited to 'src/itc.h')
-rw-r--r-- | src/itc.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -7,7 +7,7 @@ typedef void (*itc_free_element)(void *element); itc *itc_alloc(int nslots); void itc_free(itc **ctx, itc_free_element free_element); -void *itc_retrive(itc *ctx, int timeout_ms); +void *itc_retrieve(itc *ctx, int timeout_ms); int itc_inject(itc *ctx, int timeout_ms, void *element); void itc_wait_empty(itc *ctx); void itc_discard_all(itc *ctx, itc_free_element free_element); |