summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/musl/musl-legacy-error/error.h
blob: 9a4e1f8d00641c6662f25b14b3a4154346de786d (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#ifndef _ERROR_H_
#define _ERROR_H_

#include <stdarg.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>

#warning usage of non-standard #include <error.h> is deprecated

static unsigned int error_message_count = 0;

static inline void error(int status, int errnum, const char* format, ...)
{
	/* should be fflush(stdout), but that's unspecified if stdout has been closed;
	 * stick with fflush(NULL) for simplicity (glibc checks if the fd is still valid) */
	fflush(NULL);

	va_list ap;
	fprintf(stderr, "%s: ", program_invocation_name);
	va_start(ap, format);
	vfprintf(stderr, format, ap);
	va_end(ap);
	if (errnum)
		fprintf(stderr, ": %s", strerror(errnum));
	fprintf(stderr, "\n");
	error_message_count++;
	if (status)
		exit(status);
}

static int error_one_per_line = 0;

static inline void error_at_line(int status, int errnum, const char *filename,
		unsigned int linenum, const char *format, ...)
{
	va_list ap;
	if (error_one_per_line) {
		static const char *old_filename;
		static int old_linenum;
		if (linenum == old_linenum && filename == old_filename)
			return;
		old_filename = filename;
		old_linenum = linenum;
	}
	fprintf(stderr, "%s: %s:%u: ", program_invocation_name, filename, linenum);
	va_start(ap, format);
	vfprintf(stderr, format, ap);
	va_end(ap);
	if (errnum)
		fprintf(stderr, ": %s", strerror(errnum));
	fprintf(stderr, "\n");
	error_message_count++;
	if (status)
		exit(status);
}


#endif	/* _ERROR_H_ */