Changeset a678d1a in rtems


Ignore:
Timestamp:
10/29/21 19:12:44 (2 years ago)
Author:
Kinsey Moore <kinsey.moore@…>
Branches:
master
Children:
10226104
Parents:
c5986a5
git-author:
Kinsey Moore <kinsey.moore@…> (10/29/21 19:12:44)
git-committer:
Joel Sherrill <joel@…> (11/01/21 13:38:59)
Message:

cpukit: Compare the function result

Compare the function result instead of the function pointer for non-SMP
builds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/src/exceptionmapping.c

    rc5986a5 ra678d1a  
    7777  system_up = ( _Per_CPU_Get_state( cpu_self ) == PER_CPU_STATE_UP );
    7878#else
    79   system_up = ( _System_state_Get == SYSTEM_STATE_UP );
     79  system_up = ( _System_state_Get() == SYSTEM_STATE_UP );
    8080#endif
    8181
Note: See TracChangeset for help on using the changeset viewer.