Changeset 4678d1a in rtems for testsuites


Ignore:
Timestamp:
07/24/18 08:50:39 (6 years ago)
Author:
Sebastian Huber <sebastian.huber@…>
Branches:
5, master
Children:
406dd62
Parents:
0d362ff3
git-author:
Sebastian Huber <sebastian.huber@…> (07/24/18 08:50:39)
git-committer:
Sebastian Huber <sebastian.huber@…> (07/25/18 08:07:42)
Message:

bsps: bsp_start_on_secondary_processor()

Pass current processor control as first parameter in
bsp_start_on_secondary_processor() and qoriq_start_thread() to make
dependency more explicit.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • testsuites/smptests/smpfatal08/init.c

    r0d362ff3 r4678d1a  
    3535 */
    3636
    37 void bsp_start_on_secondary_processor(void)
     37void bsp_start_on_secondary_processor(struct Per_CPU_Control *cpu_self)
    3838{
    3939  /* Provided to avoid multiple definitions of the CPU SMP support functions */
     40  (void) cpu_self;
    4041}
    4142
    4243#if QORIQ_THREAD_COUNT > 1
    43 void qoriq_start_thread(void)
     44void qoriq_start_thread(Per_CPU_Control *cpu_self)
    4445{
    4546  /* Provided to avoid multiple definitions of the CPU SMP support functions */
     47  (void) cpu_self;
    4648}
    4749#endif
Note: See TracChangeset for help on using the changeset viewer.