stackchk: Avoid implementation header in API

Update #5047.
This commit is contained in:
Sebastian Huber
2024-08-14 06:42:12 +02:00
committed by Amar Takhar
parent 4abed2b422
commit a9bff015f6
2 changed files with 4 additions and 4 deletions

View File

@@ -39,7 +39,6 @@
#include <rtems.h>
#include <rtems/print.h>
#include <rtems/score/threadimpl.h>
/**
* @defgroup libmisc_stackchk Stack Checker Mechanism
@@ -215,7 +214,7 @@ void rtems_stack_checker_switch_extension(
*/
void rtems_stack_checker_reporter_quiet(
const Thread_Control *running,
const rtems_tcb *running,
bool pattern_ok
);
@@ -229,7 +228,7 @@ void rtems_stack_checker_reporter_quiet(
* still valid or not
*/
void rtems_stack_checker_reporter_print_details(
const Thread_Control *running,
const rtems_tcb *running,
bool pattern_ok
);
@@ -262,7 +261,7 @@ void rtems_stack_checker_reporter_print_details(
* still valid or not.
*/
typedef void (*Stack_checker_Reporter_handler)(
const Thread_Control *running,
const rtems_tcb *running,
bool pattern_ok
);

View File

@@ -19,6 +19,7 @@
#include <rtems/printer.h>
#include <rtems/stackchk.h>
#include <rtems/shell.h>
#include <rtems/score/threadimpl.h>
#include "internal.h"
static int rtems_shell_main_stackuse(