[PATCH 1/2] score: Replace priority prepend it with flags
Sebastian Huber
sebastian.huber at embedded-brains.de
Wed Aug 11 05:21:42 UTC 2021
On 10/08/2021 16:50, Sebastian Huber wrote:
> On 10/08/2021 16:46, Gedare Bloom wrote:
>> This is a good cleanup. The naming seems a bit off to me, but it's all
>> internal so we can always adjust it later. (I think it should be
>> singular "Priority_Flag", but really it's not just a flag, it's
>> something like the "Priority_Discipline" -- I can't think what is the
>> right word however for how you decide to break ties.) So you can just
>> leave it be for now and ignore my rambling. :)
>
> Thanks for the review. Maybe we have more flags in the future. If not we
> can still rename it after some time.
Actually I am not sure if we really need more flags. What about:
/**
* @brief The priority group flags indicate if the priority should be
appended
* or prepended to its priority group.
*/
typedef enum {
/**
* @brief The priority group prepend flag indicates that the priority
should
* be prepended to its priority group.
*/
PRIORITY_GROUP_PREPEND = 0,
/**
* @brief The priority group append flag indicates that the priority
should
* be appended to its priority group.
*/
PRIORITY_GROUP_APPEND = 1
} Priority_Group;
--
embedded brains GmbH
Herr Sebastian HUBER
Dornierstr. 4
82178 Puchheim
Germany
email: sebastian.huber at embedded-brains.de
phone: +49-89-18 94 741 - 16
fax: +49-89-18 94 741 - 08
Registergericht: Amtsgericht München
Registernummer: HRB 157899
Vertretungsberechtigte Geschäftsführer: Peter Rasmussen, Thomas Dörfler
Unsere Datenschutzerklärung finden Sie hier:
https://embedded-brains.de/datenschutzerklaerung/
More information about the devel
mailing list