source: rtems/cpukit/include/rtems/posix/key.h @ d8de6b9

5
Last change on this file since d8de6b9 was 2afb22b, checked in by Chris Johns <chrisj@…>, on 12/23/17 at 07:18:56

Remove make preinstall

A speciality of the RTEMS build system was the make preinstall step. It
copied header files from arbitrary locations into the build tree. The
header files were included via the -Bsome/build/tree/path GCC command
line option.

This has at least seven problems:

  • The make preinstall step itself needs time and disk space.
  • Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error.
  • There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult.
  • The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit.
  • An introduction of a new build system is difficult.
  • Include paths specified by the -B option are system headers. This may suppress warnings.
  • The parallel build had sporadic failures on some hosts.

This patch removes the make preinstall step. All installed header
files are moved to dedicated include directories in the source tree.
Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc,
etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g.
erc32, imx, qoriq, etc.

The new cpukit include directories are:

  • cpukit/include
  • cpukit/score/cpu/@RTEMS_CPU@/include
  • cpukit/libnetworking

The new BSP include directories are:

  • bsps/include
  • bsps/@RTEMS_CPU@/include
  • bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include

There are build tree include directories for generated files.

The include directory order favours the most general header file, e.g.
it is not possible to override general header files via the include path
order.

The "bootstrap -p" option was removed. The new "bootstrap -H" option
should be used to regenerate the "headers.am" files.

Update #3254.

  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[6c2675d]1/**
[cf301c9]2 * @file
[b5c9064]3 *
[cf301c9]4 * @brief POSIX Key Private Support
[21242c2]5 *
6 * This include file contains all the private support information for
7 * POSIX key.
[6c2675d]8 */
9
[21242c2]10/*
[b5c9064]11 * Copyright (c) 2012 Zhongwei Yao.
12 * COPYRIGHT (c) 1989-2011.
13 * On-Line Applications Research Corporation (OAR).
[5eaf0e7]14 * Copyright (c) 2016 embedded brains GmbH.
[5e9b32b]15 *
[b5c9064]16 * The license and distribution terms for this file may be
17 * found in the file LICENSE in this distribution or at
[c499856]18 * http://www.rtems.org/license/LICENSE.
[5e9b32b]19 */
[874297f3]20
[5ec2f12d]21#ifndef _RTEMS_POSIX_KEY_H
22#define _RTEMS_POSIX_KEY_H
[874297f3]23
[2ad250e]24#include <pthread.h>
25
26#include <rtems/score/chain.h>
27#include <rtems/score/object.h>
[b5c9064]28#include <rtems/score/rbtree.h>
[390cfcd]29#include <rtems/score/thread.h>
[2ad250e]30
31#ifdef __cplusplus
32extern "C" {
33#endif
[c8cf4766]34
[a0e6c73]35/**
[cf301c9]36 * @defgroup POSIX_KEY POSIX Key
[a0e6c73]37 *
[a15eaaf]38 * @ingroup POSIXAPI
[b5c9064]39 *
[a0e6c73]40 */
[b697bc6]41/**@{**/
[cf301c9]42
[12a191ae]43/**
[390cfcd]44 * @brief Represents POSIX key and value pair.
[b5c9064]45 */
46typedef struct {
[390cfcd]47  /**
[5eaf0e7]48   * @brief The chain node for the key value pairs chain in POSIX_Keys_Control.
[390cfcd]49   */
[5eaf0e7]50  Chain_Node Key_node;
[390cfcd]51
52  /**
[5eaf0e7]53   * @brief The tree node for the lookup tree in Thread_Keys_information.
[390cfcd]54   */
[5eaf0e7]55  RBTree_Node Lookup_node;
[390cfcd]56
57  /**
[5eaf0e7]58   * @brief The POSIX key identifier used as the tree key.
[390cfcd]59   */
[b5c9064]60  pthread_key_t key;
[390cfcd]61
62  /**
[5eaf0e7]63   * @brief The corresponding thread.
[390cfcd]64   */
65  Thread_Control *thread;
66
67  /**
68   * @brief The thread specific POSIX key value.
69   */
[05ac47d]70  void *value;
[390cfcd]71} POSIX_Keys_Key_value_pair;
[b5c9064]72
73/**
74 * @brief The data structure used to manage a POSIX key.
[5e9b32b]75 */
76typedef struct {
[12a191ae]77   /** This field is the Object control structure. */
[5e9b32b]78   Objects_Control     Object;
[b5c9064]79   /** This field is the data destructor. */
80   void (*destructor) (void *);
[5eaf0e7]81
82   /**
83    * @brief Key value pairs of this key.
84    */
85   Chain_Control Key_value_pairs;
[b5c9064]86 }  POSIX_Keys_Control;
[5e9b32b]87
[cf301c9]88/** @} */
89
[5e9b32b]90#ifdef __cplusplus
91}
92#endif
[cf301c9]93
[5e9b32b]94#endif
95/*  end of include file */
Note: See TracBrowser for help on using the repository browser.