From ccd54344d904b657123e4e4ba795a32212382be2 Mon Sep 17 00:00:00 2001 From: Sebastian Huber Date: Thu, 7 Jan 2016 09:55:45 +0100 Subject: score: Introduce Thread_Entry_information This avoids potential dead code in _Thread_Handler(). It gets rid of the dangerous function pointer casts. Update #2514. --- cpukit/score/src/threadentryadaptornumeric.c | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 cpukit/score/src/threadentryadaptornumeric.c (limited to 'cpukit/score/src/threadentryadaptornumeric.c') diff --git a/cpukit/score/src/threadentryadaptornumeric.c b/cpukit/score/src/threadentryadaptornumeric.c new file mode 100644 index 0000000000..acc06f0614 --- /dev/null +++ b/cpukit/score/src/threadentryadaptornumeric.c @@ -0,0 +1,26 @@ +/* + * Copyright (c) 2015 embedded brains GmbH. All rights reserved. + * + * embedded brains GmbH + * Dornierstr. 4 + * 82178 Puchheim + * Germany + * + * + * The license and distribution terms for this file may be + * found in the file LICENSE in this distribution or at + * http://www.rtems.org/license/LICENSE. + */ + +#if HAVE_CONFIG_H + #include "config.h" +#endif + +#include + +void _Thread_Entry_adaptor_numeric( Thread_Control *executing ) +{ + const Thread_Entry_numeric *numeric = &executing->Start.Entry.Kinds.Numeric; + + ( *numeric->entry )( numeric->argument ); +} -- cgit v1.2.3