Changeset b5c50309 in rtems


Ignore:
Timestamp:
11/02/00 22:56:23 (23 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6870384
Parents:
4686e5d9
Message:

2000-11-02 Ralf Corsepius <corsepiu@…>

  • aclocal/canonicalize-tools.m4, aclocal/check-tool.m4, aclocal/prog-cc.m4, aclocal/prog-cxx.m4: Replace AC_CHECK_TOOL with an RTEMS specific but more restrictive autoconf macro.
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • c/src/exec/score/ChangeLog

    r4686e5d9 rb5c50309  
     1
     22000-11-02      Joel Sherrill <joel@OARcorp.com>
     3
     4        * include/rtems/system.h: Add prototypes for POSIX_MP_NOT_IMPLEMENTED(),
     5        POSIX_NOT_IMPLEMENTED(), POSIX_BOTTOM_REACHED() removed from newlib.
    16
    272000-10-18      Nick Simon <Nick.SIMON@syntegra.bt.co.uk>
  • c/src/exec/score/include/rtems/system.h

    r4686e5d9 rb5c50309  
    4747
    4848/*
    49  *  The following insures that all data is declared in the space
     49 *  The following ensures that all data is declared in the space
    5050 *  of the initialization routine for either the Initialization Manager
    5151 *  or the initialization file for the appropriate API.  It is
     
    111111
    112112/*
     113 *  The following are used by the POSIX implementation to catch bad paths.
     114 */
     115
     116#ifdef POSIX_API_INIT
     117int POSIX_MP_NOT_IMPLEMENTED( void );
     118int POSIX_NOT_IMPLEMENTED( void );
     119int POSIX_BOTTOM_REACHED( void );
     120#endif
     121
     122/*
    113123 *  Include a base set of files.
    114124 */
  • cpukit/score/ChangeLog

    r4686e5d9 rb5c50309  
     1
     22000-11-02      Joel Sherrill <joel@OARcorp.com>
     3
     4        * include/rtems/system.h: Add prototypes for POSIX_MP_NOT_IMPLEMENTED(),
     5        POSIX_NOT_IMPLEMENTED(), POSIX_BOTTOM_REACHED() removed from newlib.
    16
    272000-10-18      Nick Simon <Nick.SIMON@syntegra.bt.co.uk>
  • cpukit/score/include/rtems/system.h

    r4686e5d9 rb5c50309  
    4747
    4848/*
    49  *  The following insures that all data is declared in the space
     49 *  The following ensures that all data is declared in the space
    5050 *  of the initialization routine for either the Initialization Manager
    5151 *  or the initialization file for the appropriate API.  It is
     
    111111
    112112/*
     113 *  The following are used by the POSIX implementation to catch bad paths.
     114 */
     115
     116#ifdef POSIX_API_INIT
     117int POSIX_MP_NOT_IMPLEMENTED( void );
     118int POSIX_NOT_IMPLEMENTED( void );
     119int POSIX_BOTTOM_REACHED( void );
     120#endif
     121
     122/*
    113123 *  Include a base set of files.
    114124 */
Note: See TracChangeset for help on using the changeset viewer.