It is a non blocking implementation for just a single writer (producer) and reader (consumer) and, under such a constraint, it can be a specific substitute for RTAI mailboxes. There are other constraints that must be satisfied so it cannot be a general substitute for the more flexible RTAI mailboxes. In fact it provides just functions corresponding to RTAI mailboxes non blocking atomic send/receive of messages, i.e. the equivalents of rt_mbx_send_if and rt_mbx_receive_if. Moreover the circular buffer size must be >= to the largest message to be sent/received. Thus sending/receiving a message either succeeds of fails. However thanks to the use of shared memory it should be more efficient than mailboxes in atomic exchanges of messages from kernel to user space. So it is a good candidate for supporting drivers development.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
Definition in file rtai_scb.h.#include <rtai_shm.h>
#include <asm/rtai_atomic.h>
Include dependency graph for rtai_scb.h:
This graph shows which files directly or indirectly include this file:
Go to the source code of this file.
Defines | |
#define | SCB ((void *)(scb)) |
#define | SIZE ((volatile int *)scb)[-3] |
#define | FBYTE ((volatile int *)scb)[-2] |
#define | LBYTE ((volatile int *)scb)[-1] |
#define | HDRSIZ (3*sizeof(int)) |
Functions | |
void * | rt_scb_init (unsigned long name, int size, unsigned long suprt) |
Allocate and initialize a shared memory circular buffer. | |
int | rt_scb_delete (unsigned long name) |
Free a shared memory circular buffer. | |
int | rt_scb_bytes (void *scb) |
Get the number of bytes avaiable in a shared memory circular buffer. | |
int | rt_scb_get (void *scb, void *msg, int msg_size) |
Gets (receives) a message, only if the whole message can be passed all at once. | |
int | rt_scb_evdrp (void *scb, void *msg, int msg_size) |
eavedrops a message. | |
int | rt_scb_put (void *scb, void *msg, int msg_size) |
Puts (sends) a message, only if the whole message can be passed all at once. |
|
Definition at line 47 of file rtai_scb.h. Referenced by rt_scb_bytes(), rt_scb_evdrp(), rt_scb_get(), and rt_scb_put(). |
|
Definition at line 49 of file rtai_scb.h. Referenced by rt_scb_init(). |
|
Definition at line 48 of file rtai_scb.h. Referenced by rt_scb_bytes(), rt_scb_evdrp(), rt_scb_get(), and rt_scb_put(). |
|
Definition at line 45 of file rtai_scb.h. Referenced by rt_scb_evdrp(), rt_scb_get(), and rt_scb_put(). |
|
Definition at line 46 of file rtai_scb.h. Referenced by rt_scb_bytes(), rt_scb_evdrp(), rt_scb_get(), and rt_scb_put(). |
|
Get the number of bytes avaiable in a shared memory circular buffer.
For internal use only. rt_scb_bytes is used to get the number of bytes avaiable in a shared memory circular buffer.
|
|
Free a shared memory circular buffer.
For internal use only. rt_scb_delete is used to release a previously allocated shared memory circular buffer.
References rt_shm_free(). Here is the call graph for this function: ![]() |
|
eavedrops a message. rt_scb_evdrp atomically spies the message msg of msg_size bytes from the shared memory circular buffer scb. It returns immediately and the caller is never blocked. It is like rt_scb_get but leaves the message in the shared memory circular buffer.
|
|
Gets (receives) a message, only if the whole message can be passed all at once. rt_scb_get tries to atomically receive the message msg of msg_size bytes from the shared memory circular buffer scb. It returns immediately and the caller is never blocked.
|
|
Allocate and initialize a shared memory circular buffer.
For internal use only. rt_scb_init is used to allocate and initialize a shared memory circular buffer.
It must be remarked that only the very first call does a real allocation, any following call to allocate with the same name from anywhere will just increase the usage count and maps the circular buffer to the user space, or return the related pointer to the already allocated buffer in kernel space. In any case the functions return a pointer to the circular buffer, appropriately mapped to the memory space in use. So if one is really sure that the named circular buffer has been initted already parameters size and suprt are not used and can be assigned any value.
References atomic_cmpxchg, HDRSIZ, and rt_shm_alloc. |
|
Puts (sends) a message, only if the whole message can be passed all at once. rt_scb_put tries to atomically send the message msg of msg_size bytes to the shared memory circular buffer scb. It returns immediately and the caller is never blocked.
|