Changeset 651e3aa in rtems


Ignore:
Timestamp:
12/09/13 16:17:00 (10 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
583ef3a5
Parents:
a0390782
Message:

cpukit/rtems: Remove XXX in comments

Location:
cpukit
Files:
29 edited

Legend:

Unmodified
Added
Removed
  • cpukit/posix/src/sempost.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2007.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    4747        the_semaphore->Object.id,
    4848#if defined(RTEMS_MULTIPROCESSING)
    49         NULL         /* XXX need to define a routine to handle this case */
     49        NULL         /* POSIX Semaphores are local only */
    5050#else
    5151        NULL
  • cpukit/rtems/include/rtems/rtems/asr.h

    ra0390782 r651e3aa  
    1212 */
    1313
    14 /* COPYRIGHT (c) 1989-2008.
     14/* COPYRIGHT (c) 1989-2013.
    1515 * On-Line Applications Research Corporation (OAR).
    1616 *
     
    3535 *  @ingroup ClassicRTEMS
    3636 *
    37  *  This encapsulates functionality which XXX
     37 *  This encapsulates functionality related to the Classic API Signal
     38 *  Manager.
    3839 */
    3940/**@{*/
  • cpukit/rtems/include/rtems/rtems/barriermp.h

    ra0390782 r651e3aa  
    88 */
    99
    10 /* COPYRIGHT (c) 1989-2008.
     10/* COPYRIGHT (c) 1989-2013.
    1111 * On-Line Applications Research Corporation (OAR).
    1212 *
     
    3030 *  @ingroup ClassicMP
    3131 *
    32  *  This encapsulates functionality which XXX
     32 *  This encapsulates functionality related to the transparent multiprocessing
     33 *  support within the Classic API Barrier Manager.
    3334 */
    3435/**@{*/
  • cpukit/rtems/include/rtems/rtems/cache.h

    ra0390782 r651e3aa  
    1010 */
    1111
    12 /* COPYRIGHT (c) 1989-2008.
     12/* COPYRIGHT (c) 1989-2013.
    1313 * On-Line Applications Research Corporation (OAR).
    1414 *
     
    1616 * found in the file LICENSE in this distribution or at
    1717 * http://www.rtems.com/license/LICENSE.
    18  *
    19  *
    20  * The functions in this file define the API to the RTEMS Cache Manager and
    21  * are divided into data cache and instruction cache functions. Data cache
    22  * functions are only meaningful if a data cache is supported. Instruction
    23  * cache functions are only meaningful if an instruction cache is supported.
    24  *
    25  * The functions below are implemented with CPU dependent support routines
    26  * implemented as part of libcpu. In the event that a CPU does not support a
    27  * specific function, the CPU dependent routine does nothing (but does exist).
    28  *
    29  * At this point, the Cache Manager makes no considerations, and provides no
    30  * support for BSP specific issues such as a secondary cache. In such a system,
    31  * the CPU dependent routines would have to be modified, or a BSP layer added
    32  * to this Manager.
    3318 */
    3419
     
    4833 *  @ingroup ClassicRTEMS
    4934 *
    50  *  This encapsulates functionality which XXX
     35 *  The functions in this file define the API to the RTEMS Cache Manager and
     36 *  are divided into data cache and instruction cache functions. Data cache
     37 *  functions are only meaningful if a data cache is supported. Instruction
     38 *  cache functions are only meaningful if an instruction cache is supported.
     39 *
     40 *  The functions are implemented with CPU dependent support routines
     41 *  implemented as part of libcpu. In the event that a CPU does not support a
     42 *  specific function, the CPU dependent routine does nothing (but does exist).
     43 *
     44 *  At this point, the Cache Manager makes no considerations, and provides no
     45 *  support for BSP specific issues such as a secondary cache. In such a system,
     46 *  the CPU dependent routines would have to be modified, or a BSP layer added
     47 *  to this Manager.
    5148 */
    5249/**@{*/
  • cpukit/rtems/include/rtems/rtems/clock.h

    ra0390782 r651e3aa  
    2020 */
    2121
    22 /* COPYRIGHT (c) 1989-2008.
     22/* COPYRIGHT (c) 1989-2013.
    2323 * On-Line Applications Research Corporation (OAR).
    2424 *
     
    4343 *  @ingroup ClassicRTEMS
    4444 *
    45  *  This encapsulates functionality which XXX
     45 *  This encapsulates functionality related to the Classic API Clock
     46 *  Manager.
    4647 */
    4748/**@{*/
  • cpukit/rtems/include/rtems/rtems/config.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3434 *  @ingroup ClassicRTEMS
    3535 *
    36  *  This encapsulates functionality which XXX
     36 *  This encapsulates functionality related to the application's configuration
     37 *  of the Classic API including the maximum number of each class of objects.
    3738 */
    3839/**@{*/
  • cpukit/rtems/include/rtems/rtems/eventmp.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3737 *  @ingroup ClassicMP
    3838 *
    39  *  This encapsulates functionality which XXX
     39 *  This encapsulates functionality related to the transparent multiprocessing
     40 *  support within the Classic API Event Manager.
    4041 */
    4142/**@{*/
  • cpukit/rtems/include/rtems/rtems/intr.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3535 *  @ingroup ClassicRTEMS
    3636 *
    37  *  This encapsulates functionality which XXX
     37 *  This encapsulates functionality related to the Classic API Interrupt
     38 *  Manager.
    3839 */
    3940/**@{*/
  • cpukit/rtems/include/rtems/rtems/message.h

    ra0390782 r651e3aa  
    2323 */
    2424
    25 /* COPYRIGHT (c) 1989-2008.
     25/* COPYRIGHT (c) 1989-2013.
    2626 * On-Line Applications Research Corporation (OAR).
    2727 *
     
    6565 *  @ingroup ClassicRTEMS
    6666 *
    67  *  This encapsulates functionality which XXX
     67 *  This encapsulates functionality related to the Classic API Message Queue
     68 *  Manager.
    6869 */
    6970/**@{*/
  • cpukit/rtems/include/rtems/rtems/modes.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3333 *  @ingroup ClassicRTEMS
    3434 *
    35  *  This encapsulates functionality which XXX
     35 *  This encapsulates functionality related to the task modes supported
     36 *  by the Classic API Task Manager.
    3637 */
    3738/**@{*/
  • cpukit/rtems/include/rtems/rtems/mp.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    2727 *  @ingroup ClassicRTEMS
    2828 *
    29  *  This encapsulates functionality which XXX
     29 *  This encapsulates functionality related to the distributed
     30 *  Multiprocessing support in the Classic API.
    3031 */
    3132/**@{*/
  • cpukit/rtems/include/rtems/rtems/msgmp.h

    ra0390782 r651e3aa  
    88 */
    99
    10 /* COPYRIGHT (c) 1989-2008.
     10/* COPYRIGHT (c) 1989-2013.
    1111 * On-Line Applications Research Corporation (OAR).
    1212 *
     
    3434 *  @ingroup ClassicMP
    3535 *
    36  *  This encapsulates functionality which XXX
     36 *  This encapsulates functionality related to the transparent multiprocessing
     37 *  support within the Classic API Message Queue Manager.
    3738 */
    3839/*{*/
  • cpukit/rtems/include/rtems/rtems/object.h

    ra0390782 r651e3aa  
    1010 */
    1111
    12 /* COPYRIGHT (c) 1989-2011.
     12/* COPYRIGHT (c) 1989-2013.
    1313 * On-Line Applications Research Corporation (OAR).
    1414 *
     
    3535 *  @ingroup ClassicRTEMS
    3636 *
    37  *  This encapsulates functionality which XXX
     37 *  This encapsulates functionality related to the Classic API Object
     38 *  Class Services.
    3839 */
    3940/**@{*/
  • cpukit/rtems/include/rtems/rtems/partmp.h

    ra0390782 r651e3aa  
    88 */
    99
    10 /* COPYRIGHT (c) 1989-2008.
     10/* COPYRIGHT (c) 1989-2013.
    1111 * On-Line Applications Research Corporation (OAR).
    1212 *
     
    3434 *  @ingroup ClassicMP
    3535 *
    36  *  This encapsulates functionality which XXX
     36 *  This encapsulates functionality related to the transparent multiprocessing
     37 *  support within the Classic API Partition Manager.
    3738 */
    3839/*{*/
  • cpukit/rtems/include/rtems/rtems/region.h

    ra0390782 r651e3aa  
    2020 */
    2121
    22 /* COPYRIGHT (c) 1989-2009.
     22/* COPYRIGHT (c) 1989-2013.
    2323 * On-Line Applications Research Corporation (OAR).
    2424 *
     
    4747 *  @ingroup ClassicRTEMS
    4848 *
    49  *  This encapsulates functionality which XXX
     49 *  This encapsulates functionality related to the Classic API Region
     50 *  Manager.
    5051 */
    5152/**@{*/
  • cpukit/rtems/include/rtems/rtems/regionmp.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3737 *  @ingroup ClassicMP
    3838 *
    39  *  This encapsulates functionality which XXX
     39 *  This encapsulates functionality related to the transparent multiprocessing
     40 *  support within the Classic API Region Manager.
    4041 */
    4142/**@{*/
  • cpukit/rtems/include/rtems/rtems/semmp.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3535 *  @ingroup ClassicMP
    3636 *
    37  *  This encapsulates functionality which XXX
     37 *  This encapsulates functionality related to the transparent multiprocessing
     38 *  support within the Classic API Semaphore Manager.
    3839 */
    3940/**@{*/
  • cpukit/rtems/include/rtems/rtems/signalmp.h

    ra0390782 r651e3aa  
    88 */
    99
    10 /* COPYRIGHT (c) 1989-2008.
     10/* COPYRIGHT (c) 1989-2013.
    1111 * On-Line Applications Research Corporation (OAR).
    1212 *
     
    3434 *  @ingroup ClassicMP
    3535 *
    36  *  This encapsulates functionality which XXX
     36 *  This encapsulates functionality related to the transparent multiprocessing
     37 *  support within the Classic API Signal Manager.
    3738 */
    3839/*{*/
  • cpukit/rtems/include/rtems/rtems/status.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3333 *  @ingroup ClassicRTEMS
    3434 *
    35  *  This encapsulates functionality which XXX
     35 *  This encapsulates functionality related to the status codes returned
     36 *  by Classic API directives.
    3637 */
    3738/**@{*/
  • cpukit/rtems/include/rtems/rtems/taskmp.h

    ra0390782 r651e3aa  
    1111 */
    1212
    13 /* COPYRIGHT (c) 1989-2008.
     13/* COPYRIGHT (c) 1989-2013.
    1414 * On-Line Applications Research Corporation (OAR).
    1515 *
     
    3737 *  @ingroup ClassicMP
    3838 *
    39  *  This encapsulates functionality which XXX
     39 *  This encapsulates functionality related to the transparent multiprocessing
     40 *  support within the Classic API Task Manager.
    4041 */
    4142/**@{*/
  • cpukit/rtems/src/region.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    6363  _MPCI_Register_packet_processor(
    6464    MP_PACKET_REGION,
    65     0  /* XXX _Region_MP_Process_packet */
     65    0  /* Multiprocessing is not currently supported for Regions */
    6666  );
    6767#endif
  • cpukit/rtems/src/rtemsbuildid.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427Objects_Id rtems_build_id(
    2528  uint32_t api,
  • cpukit/rtems/src/rtemsobjectgetname.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427char *rtems_object_get_name(
    2528  Objects_Id     id,
  • cpukit/rtems/src/rtemsobjectidapimaximum.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427int rtems_object_id_api_maximum(void);
    2528
  • cpukit/rtems/src/rtemsobjectidapiminimum.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427int rtems_object_id_api_minimum(void);
    2528
  • cpukit/rtems/src/rtemsobjectidgetapi.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427int rtems_object_id_get_api(
    2528  Objects_Id id
  • cpukit/rtems/src/rtemsobjectidgetclass.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427int rtems_object_id_get_class(
    2528  Objects_Id id
  • cpukit/rtems/src/rtemsobjectidgetindex.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427int rtems_object_id_get_index(
    2528  Objects_Id id
  • cpukit/rtems/src/rtemsobjectidgetnode.c

    ra0390782 r651e3aa  
    77
    88/*
    9  *  COPYRIGHT (c) 1989-2008.
     9 *  COPYRIGHT (c) 1989-2013.
    1010 *  On-Line Applications Research Corporation (OAR).
    1111 *
     
    2121#include <rtems/score/objectimpl.h>
    2222
    23 /* XXX: This is for language bindings */
     23/*
     24 * This is implemented as a macro. This body is provided to support
     25 * bindings from non-C based languages.
     26 */
    2427int rtems_object_id_get_node(
    2528  Objects_Id id
Note: See TracChangeset for help on using the changeset viewer.