Re: [PATCH 1/4] score: Add Resource Handler

2014-06-02 Thread Gedare Bloom
On Mon, Jun 2, 2014 at 9:50 AM, Sebastian Huber wrote: > On 2014-06-02 15:47, Gedare Bloom wrote: >> >> On Mon, Jun 2, 2014 at 4:35 AM, Sebastian Huber >> wrote: >>> >>> >On 2014-05-28 23:48, Gedare Bloom wrote: > > >>> > >>>+/** >> >> >>> >+ * @brief Returns true if this is

Re: [PATCH 1/4] score: Add Resource Handler

2014-06-02 Thread Sebastian Huber
On 2014-06-02 15:47, Gedare Bloom wrote: On Mon, Jun 2, 2014 at 4:35 AM, Sebastian Huber wrote: >On 2014-05-28 23:48, Gedare Bloom wrote: >>> >>>+/** >>> >+ * @brief Returns true if this is the most recent resource of the node, >>> >and >>> >+ * false otherwise. >>> >+ * >>> >+ * Resources a

Re: [PATCH 1/4] score: Add Resource Handler

2014-06-02 Thread Gedare Bloom
On Mon, Jun 2, 2014 at 4:35 AM, Sebastian Huber wrote: > On 2014-05-28 23:48, Gedare Bloom wrote: >>> >>> +/** >>> >+ * @brief Returns true if this is the most recent resource of the node, >>> > and >>> >+ * false otherwise. >>> >+ * >>> >+ * Resources are organized in last in first out order (LIF

Re: [PATCH 1/4] score: Add Resource Handler

2014-06-02 Thread Sebastian Huber
On 2014-05-28 23:48, Gedare Bloom wrote: +/** >+ * @brief Returns true if this is the most recent resource of the node, and >+ * false otherwise. >+ * >+ * Resources are organized in last in first out order (LIFO). >+ * >+ * @param[in] node The node containing the resource. >+ * @param[in] resour

Re: [PATCH 1/4] score: Add Resource Handler

2014-05-28 Thread Gedare Bloom
On Wed, May 28, 2014 at 10:29 AM, Sebastian Huber wrote: > A resource is something that has at most one owner at a time and may > have multiple rivals in case an owner is present. The owner and rivals > are impersonated via resource nodes. A resource is represented via the > resource control str

[PATCH 1/4] score: Add Resource Handler

2014-05-28 Thread Sebastian Huber
A resource is something that has at most one owner at a time and may have multiple rivals in case an owner is present. The owner and rivals are impersonated via resource nodes. A resource is represented via the resource control structure. The resource controls and nodes are organized as trees.