forked from Imagelibrary/rtems
The CONFIGURE_HAS_OWN_INIT_TASK_TABLE and CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE are the last *_HAS_OWN_* configuration options. These two options are probably unused, see also: * https://lists.rtems.org/pipermail/users/2019-April/033129.html * https://lists.rtems.org/pipermail/users/2019-April/033130.html Removing them simplifies the configuration. If there is a real user need which shows up after the removal, we can resurrect them on demand. Using CONFIGURE_POSIX_HAS_OWN_INIT_THREAD_TABLE would have required the use of the undocumented CONFIGURE_POSIX_INIT_THREAD_TABLE_NAME and CONFIGURE_POSIX_INIT_THREAD_TABLE_SIZE configuration options. Update #3874.
26 lines
595 B
C
26 lines
595 B
C
#ifdef HAVE_CONFIG_H
|
|
#include "config.h"
|
|
#endif
|
|
|
|
#include "../psxfatal_support/psxfatal.h"
|
|
|
|
/*
|
|
* Classic API Init task create failure
|
|
*/
|
|
|
|
#define CONFIGURE_POSIX_INIT_THREAD_ENTRY_POINT NULL
|
|
|
|
#define FATAL_ERROR_TEST_NAME "1"
|
|
#define FATAL_ERROR_DESCRIPTION \
|
|
"POSIX API Init thread create failure - NULL entry"
|
|
#define FATAL_ERROR_EXPECTED_SOURCE INTERNAL_ERROR_CORE
|
|
#define FATAL_ERROR_EXPECTED_ERROR \
|
|
INTERNAL_ERROR_POSIX_INIT_THREAD_CREATE_FAILED
|
|
|
|
static void force_error(void)
|
|
{
|
|
/* we will not run this far */
|
|
}
|
|
|
|
#include "../psxfatal_support/psxfatalimpl.h"
|