#include #include #include #include #include #include /* Non standard include */ #include #include void *create_comm_channel(void) { struct channel *channel; int flags; channel = malloc(sizeof(channel)); if (channel != NULL) { if (!pipe(channel->pipefd)) { flags = fcntl(channel->pipefd[READ_IDX], F_GETFL); fcntl(channel->pipefd[READ_IDX], F_SETFL, flags | O_NONBLOCK); return channel; } else free(channel); } return NULL; } int end_producer(void *unused __attribute__ ((unused))) { return 0; } int destroy_comm_channel(void *channel) { free(channel); return 0; } void *recv_one_data(struct channel *channel) { void *result, **res_ptr; int n; unsigned int nb_read; nb_read = 0; res_ptr = &result; do { n = read(channel->pipefd[READ_IDX], res_ptr, sizeof(void *)); if (n > 0) { nb_read += n; res_ptr = (void **) ((uintptr_t) res_ptr + n); } } while (nb_read < sizeof(void *)); return result; } ssize_t recv_some_data(struct channel *channel, void **buf, size_t count) { int n, nb_read, nb_bytes; nb_bytes = count * sizeof(void *); nb_read = read(channel->pipefd[READ_IDX], buf, nb_bytes); if (nb_read <= 0) return 0; buf = (void **) ((uintptr_t) buf + nb_read); while (nb_read % sizeof(void *)) { n = read(channel->pipefd[READ_IDX], buf, sizeof(void *) - (nb_read % sizeof(void *))); if (n > 0) { nb_read += n; buf = (void **) ((uintptr_t) buf + n); } } return nb_read / sizeof(void *); }