source: rtems/cpukit/posix/src/keyfreememory.c @ a15eaaf

4.115
Last change on this file since a15eaaf was 1be3fad, checked in by Ayush Awasthi <kolaveridi87@…>, on 12/20/12 at 03:23:52

posix: Doxygen Enhancement Task #6

http://www.google-melange.com/gci/task/view/google/gci2012/7945218

  • Property mode set to 100644
File size: 713 bytes
Line 
1/**
2 * @file
3 *
4 * @brief POSIX Function Keys Free Memory
5 * @ingroup POSIX
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2010.
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/score/thread.h>
23#include <rtems/score/wkspace.h>
24#include <rtems/posix/key.h>
25
26void _POSIX_Keys_Free_memory(
27  POSIX_Keys_Control *the_key
28)
29{
30  uint32_t            the_api;
31
32  for ( the_api = 1; the_api <= OBJECTS_APIS_LAST; the_api++ )
33    _Workspace_Free( the_key->Values[ the_api ] );
34}
Note: See TracBrowser for help on using the repository browser.