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

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


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

Legend:

Unmodified
Added
Removed
Modified
  • GSoC/2013/UnifiedAPIs

    v8 v9  
    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. 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.
     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. Since grep only parses line by line, so it cannot do this task very easily. What happens now is that all the newlines are trimmed while searching a file.