mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 19:44:36 +08:00
posix: Update to the pthread_once changes.
Implement the reeview changes. Add a POSIX Fatal error domain. Fix confdefs.h to correctly handle the internal POSIX mutexes.
This commit is contained in:
@@ -44,6 +44,13 @@
|
||||
#include <rtems/posix/spinlockimpl.h>
|
||||
#include <rtems/posix/time.h>
|
||||
|
||||
void _POSIX_Fatal_error( POSIX_Fatal_domain domain, int eno )
|
||||
{
|
||||
uint32_t code = ( domain << 8 ) | ( ( uint32_t ) eno & 0xffU );
|
||||
|
||||
_Internal_error_Occurred( INTERNAL_ERROR_POSIX_API, false, code );
|
||||
}
|
||||
|
||||
Objects_Information *_POSIX_Objects[ OBJECTS_POSIX_CLASSES_LAST + 1 ];
|
||||
|
||||
void _POSIX_API_Initialize(void)
|
||||
|
||||
Reference in New Issue
Block a user