zig/lib/libc/include/sparc-linux-gnu/bits/siginfo-consts-arch.h
Andrew Kelley 49d1a4c562 move lib dirs to lib subdir
also start prefering NtDll API. so far:
 * NtQueryInformationFile
 * NtClose

adds a performance workaround for windows unicode conversion. but that
should probably be removed before merging
2019-07-15 17:54:50 -04:00

12 lines
278 B
C

/* Architecture-specific additional siginfo constants. SPARC version. */
#ifndef _BITS_SIGINFO_CONSTS_ARCH_H
#define _BITS_SIGINFO_CONSTS_ARCH_H 1
/* `si_code' values for SIGEMT signal. */
enum
{
EMT_TAGOVF = 1 /* Tag overflow. */
#define EMT_TAGOVF EMT_TAGOVF
};
#endif