Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce ddsrt_abort and ddsrt_exit #1877

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion ports/freertos-posix/src/loader.c
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ void vAssertCalled(unsigned long ulLine, const char * const pcFileName)
fprintf(stderr, "[ASSERT] %s:%lu"LF, pcFileName, ulLine);
}
taskEXIT_CRITICAL();
abort();
ddsrt_abort();
}

void vApplicationMallocFailedHook(void)
Expand Down
1 change: 1 addition & 0 deletions src/core/cdr/include/dds/cdr/dds_cdrstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@

#include "dds/ddsrt/bswap.h"
#include "dds/ddsrt/static_assert.h"
#include "dds/ddsrt/process.h"
#include "dds/ddsc/dds_data_type_properties.h"
#include "dds/dds.h"

Expand Down
Loading
Loading