Sebastian Huber commented on a discussion on cpukit/include/rtems/record.h: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/282#note_114245 > + */ > + RTEMS_RECORD_FETCH_CONTINUE, > + > + /** > + * @brief This enumerator indicates that the item count passed to > + * rtems_record_fetch() is invalid. > + */ > + RTEMS_RECORD_FETCH_INVALID_ITEM_COUNT > +} rtems_record_fetch_status; > > /** > - * @brief Drains the record items on all processors. > + * @brief Returns the recommended count of items passed to > + * rtems_record_fetch(). > + */ > +size_t rtems_record_fetch_recommended_item_count( void ); I will rename it to `rtems_record_get_item_count_for_fetch()`. What about this comment: ``` /** * @brief Returns the count of items which allows getting all available items * for one processor through one call to rtems_record_fetch(). */ size_t rtems_record_get_item_count_for_fetch( void ); ``` -- View it on GitLab: https://gitlab.rtems.org/rtems/rtos/rtems/-/merge_requests/282#note_114245 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
