source: rtems/cpukit/score/src/threadentryadaptorpointer.c @ 8a8b95aa

5
Last change on this file since 8a8b95aa was ccd5434, checked in by Sebastian Huber <sebastian.huber@…>, on 01/07/16 at 08:55:45

score: Introduce Thread_Entry_information

This avoids potential dead code in _Thread_Handler(). It gets rid of
the dangerous function pointer casts.

Update #2514.

  • Property mode set to 100644
File size: 652 bytes
Line 
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#if HAVE_CONFIG_H
16  #include "config.h"
17#endif
18
19#include <rtems/score/threadimpl.h>
20
21void _Thread_Entry_adaptor_pointer( Thread_Control *executing )
22{
23  const Thread_Entry_pointer *pointer = &executing->Start.Entry.Kinds.Pointer;
24
25  executing->Wait.return_argument = ( *pointer->entry )( pointer->argument );
26}
Note: See TracBrowser for help on using the repository browser.