RTEMS
threadentryadaptornumeric.c
1 /*
2  * Copyright (c) 2015 embedded brains GmbH. All rights reserved.
3  *
4  * embedded brains GmbH
5  * Dornierstr. 4
6  * 82178 Puchheim
7  * Germany
8  * <rtems@embedded-brains.de>
9  *
10  * The license and distribution terms for this file may be
11  * found in the file LICENSE in this distribution or at
12  * http://www.rtems.org/license/LICENSE.
13  */
14 
15 #ifdef HAVE_CONFIG_H
16 #include "config.h"
17 #endif
18 
19 #include <rtems/score/threadimpl.h>
20 
22 {
23  const Thread_Entry_numeric *numeric = &executing->Start.Entry.Kinds.Numeric;
24 
25  ( *numeric->entry )( numeric->argument );
26 }
Thread_Start_information Start
Definition: thread.h:825
Thread_Entry_information Entry
Definition: thread.h:180
void _Thread_Entry_adaptor_numeric(Thread_Control *executing)
Calls the start kinds numeric entry of the thread.
Data for thread entry with one numeric argument and no return value.
Definition: thread.h:113
Inlined Routines from the Thread Handler.
union Thread_Entry_information::@25 Kinds
Thread entry data used by the adaptor to call the thread entry function with the right parameters...