diff options
author | Emilio G. Cota <cota@braap.org> | 2018-08-11 17:10:11 -0400 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2018-10-26 17:17:32 +0200 |
commit | 83f164bd5aaa87b249db328d2490b95cf9d4807d (patch) | |
tree | 32c677be98303606754ac6c9a5e92b5081442ded /linux-user/qemu.h | |
parent | 874d8ce831c49a270a12f9e76c8371db12fa243f (diff) | |
download | qemu-83f164bd5aaa87b249db328d2490b95cf9d4807d.zip qemu-83f164bd5aaa87b249db328d2490b95cf9d4807d.tar.gz qemu-83f164bd5aaa87b249db328d2490b95cf9d4807d.tar.bz2 |
linux-user: fix comment s/atomic_write/atomic_set/
Signed-off-by: Emilio G. Cota <cota@braap.org>
Message-Id: <20180811211011.6277-1-cota@braap.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/qemu.h')
-rw-r--r-- | linux-user/qemu.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index 1beb6a2..dde3f26 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -143,7 +143,7 @@ typedef struct TaskState { /* Nonzero if process_pending_signals() needs to do something (either * handle a pending signal or unblock signals). * This flag is written from a signal handler so should be accessed via - * the atomic_read() and atomic_write() functions. (It is not accessed + * the atomic_read() and atomic_set() functions. (It is not accessed * from multiple threads.) */ int signal_pending; |