aboutsummaryrefslogblamecommitdiffstats
path: root/internal.h
blob: 3e22586ea6a0b84f06e8051df6666aeb86056bf7 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                                         
                       



                     
                  























                                                                  
                                                                         
/* See LICENSE file for copyright and license details. */
#include "liberror.h"

#include <sys/socket.h>
#include <alloca.h>
#include <errno.h>
#include <inttypes.h>
#include <limits.h>
#include <netdb.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>


#if defined(__GNUC__)
# define GCC_ATTRIBUTES(...) __attribute__((__VA_ARGS__))
#else
# define GCC_ATTRIBUTES(...)
#endif

#define HIDDEN GCC_ATTRIBUTES(__visibility__("hidden"))
#define WEAK   GCC_ATTRIBUTES(__weak__)


struct liberror_backtrace {
	size_t refcount;
	size_t n;
	uintptr_t rips[];
};


HIDDEN extern _Thread_local struct liberror_error liberror_error_;
HIDDEN extern _Thread_local int liberror_have_error_;
extern _Thread_local struct liberror_backtrace *liberror_saved_backtrace;