summaryrefslogtreecommitdiff
path: root/src/stdlib/abort_handler_s.c
blob: 145c9e6dd8362819f9c7933642ef55852cedc820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
//#include <errno.h>
#include "errno/errno_t.h"
#include "_stdlib.h"
#include "_safety.h"

void abort_handler_s(const char * restrict msg, void * restrict ptr, errno_t error)
{
	struct __constraint_info *ci = ptr;

	puts(msg);
	if (ci) {
		printf("In call to %s()", ci->func);
		if (__checked_call.file) {
			printf(" (");
			if (__checked_call.func) {
				printf("in %s(), ", __checked_call.func);
			}
			printf("at %s:%llu)", __checked_call.file, __checked_call.line);
		}
		printf(", value %x\n", ci->value);
	}
	if (error != 0) {
		printf("Provided error: %s (%d)\n", strerror(error), error);
	}
	abort();
}

/*
CEXT1(201112)
*/