Kinsey Moore started a new discussion on cpukit/libmisc/cpuuse/cpuusagereport.c: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/232#note_113104 > - name, > - seconds, nanoseconds, > - ival, fval > + cpuuse_data->name, > + cpuuse_data->seconds, cpuuse_data->nanoseconds, > + cpuuse_data->ival, cpuuse_data->fval > ); > + return false; > +} > + > > +static bool cpu_usage_visitor( Thread_Control *the_thread, void *arg ) > +{ > + cpu_usage_context *ctx; > + ctx = arg; > + cpuuse_info * cpuuse_data; All declarations in a block should be together at the top of the block. Please move this up one line or make the ctx assignment part of the declaration. -- View it on GitLab: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/232#note_113104 You're receiving this email because of your account on gitlab.rtems.org.
_______________________________________________ bugs mailing list [email protected] http://lists.rtems.org/mailman/listinfo/bugs
