Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion cpukit/include/rtems/scheduler.h
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,9 @@
#define RTEMS_SCHEDULER_STRONG_APA( name, prio_count ) \
static struct { \
Scheduler_strong_APA_Context Base; \
Chain_Control Ready[ ( prio_count ) ]; \
Scheduler_strong_APA_Queue Cpu[ CONFIGURE_MAXIMUM_PROCESSORS ]; \
Scheduler_strong_APA_Caller caller[ CONFIGURE_MAXIMUM_PROCESSORS ]; \
Scheduler_strong_APA_Visited visited[ CONFIGURE_MAXIMUM_PROCESSORS ];
} SCHEDULER_STRONG_APA_CONTEXT_NAME( name )

#define RTEMS_SCHEDULER_TABLE_STRONG_APA( name, obj_name ) \
Expand Down
Loading