diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-06-27 23:33:04 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-06-27 23:34:13 +0200 |
commit | 328a9f879c4b30ae354aac72e405d8cb157052e9 (patch) | |
tree | fff7fdce738f2deabc871f693063092715096b91 /kern | |
parent | 94250a842b225bb11d329623b9f85623ef56205b (diff) | |
download | gnumach-328a9f879c4b30ae354aac72e405d8cb157052e9.tar.gz gnumach-328a9f879c4b30ae354aac72e405d8cb157052e9.tar.bz2 gnumach-328a9f879c4b30ae354aac72e405d8cb157052e9.zip |
Add cause_ast_check prototype
As reported by Almudena Garcia <liberamenso10000@gmail.com>
* kern/ast.h [NCPUS > 1] (cause_ast_check): Add prototype.
Diffstat (limited to 'kern')
-rw-r--r-- | kern/ast.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,7 @@ */ #include "cpu_number.h" +#include <kern/kern_types.h> #include <kern/macros.h> #include <machine/ast.h> @@ -131,4 +132,8 @@ extern void ast_init (void); extern void ast_check (void); +#if NCPUS > 1 +extern void cause_ast_check(const processor_t processor); +#endif + #endif /* _KERN_AST_H_ */ |