mirror of
https://github.com/ziglang/zig.git
synced 2024-12-01 09:32:31 +00:00
49d1a4c562
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
12 lines
278 B
C
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 |