* [Xenomai-help] Sharing of access to RT_MUTEX, RT_QUEUE, and RT_TASK
@ 2012-01-31 6:40 Doug Brunner
2012-01-31 8:24 ` Philippe Gerum
0 siblings, 1 reply; 2+ messages in thread
From: Doug Brunner @ 2012-01-31 6:40 UTC (permalink / raw)
To: xenomai
I'm working on an application where it would be convenient for several tasks within the same process to share access to single descriptors for mutexes, queues, and tasks, rather than each task having to separately bind to each one and keep its own RT_MUTEX/RT_QUEUE/RT_TASK.
The documentation doesn't seem to speak to this issue, and I haven't been able to find a definitive answer through searches. Can anyone clarify whether or not this will lead to problems, e.g. task A is in the midst of locking a mutex when task B starts trying to obtain a lock itself, and bad results occur?
Thanks,
Doug Brunner
^ permalink raw reply [flat|nested] 2+ messages in thread* Re: [Xenomai-help] Sharing of access to RT_MUTEX, RT_QUEUE, and RT_TASK
2012-01-31 6:40 [Xenomai-help] Sharing of access to RT_MUTEX, RT_QUEUE, and RT_TASK Doug Brunner
@ 2012-01-31 8:24 ` Philippe Gerum
0 siblings, 0 replies; 2+ messages in thread
From: Philippe Gerum @ 2012-01-31 8:24 UTC (permalink / raw)
To: Doug Brunner; +Cc: Xenomai-help
On 01/31/2012 07:40 AM, Doug Brunner wrote:
> I'm working on an application where it would be convenient for several tasks within the same process to share access to single descriptors for mutexes, queues, and tasks, rather than each task having to separately bind to each one and keep its own RT_MUTEX/RT_QUEUE/RT_TASK.
>
> The documentation doesn't seem to speak to this issue, and I haven't been able to find a definitive answer through searches. Can anyone clarify whether or not this will lead to problems, e.g. task A is in the midst of locking a mutex when task B starts trying to obtain a lock itself, and bad results occur?
Descriptors in user-space only contain handles to kernel objects, they
carry no object properties; on the contrary, their kernel space
counterparts do carry object information.
So, from user-space, you can share descriptors between threads which
belong to the same process freely. The same way, cloning a descriptor in
user-space using bitwise-copy does produce a valid descriptor to the
original object.
Binding is meant to be used in two cases:
- when the original object descriptor is not in the same address space
(i.e. created by a different process, or created in kernel space)
- when the caller wants to wait for some object to be created, in which
case the binding operation provides the required synchronization
mechanism as a bonus.
In the case you describe, there is no problem in considering object
descriptors as globally shared variables.
>
> Thanks,
> Doug Brunner
>
>
> _______________________________________________
> Xenomai-help mailing list
> Xenomai-help@domain.hid
> https://mail.gna.org/listinfo/xenomai-help
>
--
Philippe.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2012-01-31 8:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-31 6:40 [Xenomai-help] Sharing of access to RT_MUTEX, RT_QUEUE, and RT_TASK Doug Brunner
2012-01-31 8:24 ` Philippe Gerum
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.