Changes between Version 7 and Version 8 of GSoC/2013/UnifiedAPIs


Ignore:
Timestamp:
09/24/13 20:41:42 (11 years ago)
Author:
Vipulnayyar
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • GSoC/2013/UnifiedAPIs

    v7 v8  
    3838#Check whether a required header is being installed by searching it's name in the Makefile.am
    3939#Compile a list of all RTEMS internal functions(i.e starting with an '_' ) defined in cpukit & libcpu.
    40 #Compile another list of functions starting with an '_' being executed in BSP by searching for a ';' to ensure that function is actually being called.
     40#Compile another list of functions starting with an '_' being executed in BSP by searching for a ';' to ensure that function is actually being called. Searching for a function being called from a file can be a bit intimidating if the function calling spans multiple lines, meaning that the function name is on one line & the semicolon on another.