mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-18 14:40:06 +00:00
[BZ #4816]
* manual/signal.texi (Non-atomic Example): Make memory var volatile. [BZ #4816] * manual/signal.texi (Non-atomic Example): Make memory var volatile.
This commit is contained in:
parent
00d2692952
commit
403445d72e
@ -1,5 +1,8 @@
|
|||||||
2007-07-20 Jakub Jelinek <jakub@redhat.com>
|
2007-07-20 Jakub Jelinek <jakub@redhat.com>
|
||||||
|
|
||||||
|
[BZ #4816]
|
||||||
|
* manual/signal.texi (Non-atomic Example): Make memory var volatile.
|
||||||
|
|
||||||
[BZ #4813]
|
[BZ #4813]
|
||||||
* login/forkpty.c (forkpty): Close master and slave fds on
|
* login/forkpty.c (forkpty): Close master and slave fds on
|
||||||
fork failure. Patch by
|
fork failure. Patch by
|
||||||
|
@ -1966,7 +1966,7 @@ writing.)
|
|||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
||||||
struct two_words @{ int a, b; @} memory;
|
volatile struct two_words @{ int a, b; @} memory;
|
||||||
|
|
||||||
void
|
void
|
||||||
handler(int signum)
|
handler(int signum)
|
||||||
|
Loading…
Reference in New Issue
Block a user