kernel: Remove redundant type name

struct k_thread already has a pointer type k_tid_t, there is no need for
this definition to tcs.

Less symbols/names make the code cleaner and more readable.

Signed-off-by: Flavio Ceolin <flavio.ceolin@intel.com>
This commit is contained in:
Flavio Ceolin 2018-09-27 11:06:12 -07:00 committed by Anas Nashif
commit 61a1057ea5
8 changed files with 37 additions and 29 deletions

View file

@ -576,7 +576,6 @@ struct k_thread {
typedef struct k_thread _thread_t;
typedef struct k_thread *k_tid_t;
#define tcs k_thread
enum execution_context_types {
K_ISR = 0,