/* * Copyright (C) 2009-2011 Thomas Preud'homme * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the "Software"), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. */ #ifndef _SPECIFIC_COMM_H_ #define _SPECIFIC_COMM_H_ 1 /* Non standard include */ #include #define SHARED_SPACE_SIZE (2 * CACHE_LINE_SIZE) #define SHARED_SPACE_VOIDPTR (SHARED_SPACE_SIZE / sizeof(void *)) struct channel { void * volatile *shared_space; volatile unsigned int cons_idx __attribute__ ((aligned (CACHE_LINE_SIZE))); volatile unsigned int prod_idx __attribute__ ((aligned (CACHE_LINE_SIZE))); }; __BEGIN_DECLS static inline void send(struct channel *channel, void **addr) { static __thread unsigned int local_cons_idx = 0; unsigned int local_prod, next_prod; local_prod = channel->prod_idx; next_prod = (local_prod + 1) % SHARED_SPACE_VOIDPTR; if (next_prod == local_cons_idx) { while (next_prod == channel->cons_idx); local_cons_idx = channel->cons_idx; } channel->shared_space[local_prod] = addr; channel->prod_idx = next_prod; } __END_DECLS #endif