mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-04 19:00:09 +00:00
13 lines
279 B
C
13 lines
279 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
|