Notice: We have migrated to GitLab launching 2024-05-01 see here: https://gitlab.rtems.org/

Changes between Version 1 and Version 2 of Release/4.10


Ignore:
Timestamp:
09/11/08 23:36:19 (16 years ago)
Author:
JoelSherrill
Comment:

/* API Changes */ Add types deprecated

Legend:

Unmodified
Added
Removed
Modified
  • Release/4.10

    v1 v2  
    4242 *  Critical section reduction
    4343= API Changes =
     44
     45  *  A number of RTEMS specific types have been deprecated which are no longer necessary based upon the types provided by C99.  user is encouraged to use C99 types.  If you have application that uses these types, you can defined (RTEMS_DEPRECATED_TYPES when building your application to enabled them.  They will be removed completely in a future release series and this is intended to be a transition release. The following types have been deprecated:
     46
     47   *  boolean, rtems_boolean (use bool, instead)
     48   *  single_precision, rtems_single (use float, instead)
     49   *  double_precision, rtems_double (use double, instead)
    4450
    4551  *  TBD