diff options
author | Marin Ramesa <mpr@hi.t-com.hr> | 2013-12-16 23:55:18 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2013-12-17 19:05:05 +0100 |
commit | 13a3d2472961902e809bb90fc5adc6b7696f7db5 (patch) | |
tree | 4557759cdc799e9774442e82cee9bd39eafaf514 /device/ds_routines.c | |
parent | 5a5ec187ae6cb2afc874ad9ef118ef634e9164c8 (diff) | |
download | gnumach-13a3d2472961902e809bb90fc5adc6b7696f7db5.tar.gz gnumach-13a3d2472961902e809bb90fc5adc6b7696f7db5.tar.bz2 gnumach-13a3d2472961902e809bb90fc5adc6b7696f7db5.zip |
Mark functions that don't return with attribute noreturn
Diffstat (limited to 'device/ds_routines.c')
-rw-r--r-- | device/ds_routines.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/device/ds_routines.c b/device/ds_routines.c index 146b7eb6..c99818b5 100644 --- a/device/ds_routines.c +++ b/device/ds_routines.c @@ -1479,7 +1479,7 @@ void iodone(ior) splx(s); } -void io_done_thread_continue(void) +void __attribute__ ((noreturn)) io_done_thread_continue(void) { for (;;) { spl_t s; |