kernel: threads: remove thread groups

We have removed this features when we moved to the unified kernel. Those
functions existed to support migration from the old kernel and can go
now.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-12-05 11:23:25 -05:00 committed by Kumar Gala
commit fb4eecaf5f
2 changed files with 0 additions and 62 deletions

View file

@ -738,7 +738,6 @@ struct _static_thread_data {
u32_t init_options;
s32_t init_delay;
void (*init_abort)(void);
u32_t init_groups;
};
#define _THREAD_INITIALIZER(thread, stack, stack_size, \
@ -756,7 +755,6 @@ struct _static_thread_data {
.init_options = (options), \
.init_delay = (delay), \
.init_abort = (abort), \
.init_groups = (groups), \
}
/**