source: rtems/cpukit/rtems/src/taskvariable_invoke_dtor.c @ c404828

4.115
Last change on this file since c404828 was c404828, checked in by Sebastian Huber <sebastian.huber@…>, on 07/23/13 at 12:56:00

rtems: Create tasks implementation header

Move implementation specific parts of tasks.h and tasks.inl into new
header file tasksimpl.h. The tasks.h contains now only the application
visible API.

  • Property mode set to 100644
File size: 863 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Tasks Invoke Task Variable Destructor
5 *  @ingroup ClassicTasks
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2007.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.com/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/system.h>
22#include <rtems/rtems/tasksimpl.h>
23#include <rtems/score/wkspace.h>
24
25void _RTEMS_Tasks_Invoke_task_variable_dtor(
26  Thread_Control        *the_thread,
27  rtems_task_variable_t *tvp
28)
29{
30  void (*dtor)(void *);
31  void *value;
32
33  dtor = tvp->dtor;
34  if (_Thread_Is_executing(the_thread)) {
35    value = *tvp->ptr;
36    *tvp->ptr = tvp->gval;
37  } else {
38    value = tvp->tval;
39  }
40
41  if ( dtor )
42    (*dtor)(value);
43
44  _Workspace_Free(tvp);
45}
Note: See TracBrowser for help on using the repository browser.