Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
1999-10-11  Andreas Jaeger  <aj@suse.de>

	* sysdeps/unix/sysv/linux/bits/siginfo.h (SI_KERNEL): Added.
	* sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
	Closes PR libc/1384.
  • Loading branch information
Ulrich Drepper committed Nov 1, 1999
1 parent 882ed1b commit 56bd585
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
6 changes: 6 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
1999-10-11 Andreas Jaeger <aj@suse.de>

* sysdeps/unix/sysv/linux/bits/siginfo.h (SI_KERNEL): Added.
* sysdeps/unix/sysv/linux/mips/bits/siginfo.h: Likewise.
Closes PR libc/1384.

1999-10-20 Andreas Schwab <schwab@suse.de>

* math/Makefile (libm-tests-generated): Remove libm-test.stmp.
Expand Down
4 changes: 3 additions & 1 deletion sysdeps/unix/sysv/linux/bits/siginfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,10 @@ enum
# define SI_TIMER SI_TIMER
SI_QUEUE, /* Sent by sigqueue. */
# define SI_QUEUE SI_QUEUE
SI_USER /* Sent by kill, sigsend, raise. */
SI_USER, /* Sent by kill, sigsend, raise. */
# define SI_USER SI_USER
SI_KERNEL = 0x80 /* Send by kernel. */
#define SI_KERNEL SI_KERNEL
};


Expand Down
4 changes: 3 additions & 1 deletion sysdeps/unix/sysv/linux/mips/bits/siginfo.h
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,10 @@ enum
# define SI_ASYNCIO SI_ASYNCIO
SI_QUEUE, /* Sent by sigqueue. */
# define SI_QUEUE SI_QUEUE
SI_USER /* Sent by kill, sigsend, raise. */
SI_USER, /* Sent by kill, sigsend, raise. */
# define SI_USER SI_USER
SI_KERNEL = 0x80 /* Send by kernel. */
#define SI_KERNEL SI_KERNEL
};


Expand Down

0 comments on commit 56bd585

Please sign in to comment.