diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2023-01-04 00:30:28 -0500 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-01-05 01:01:45 +0100 |
commit | c8cd13d8e9853752de5756ab42a98e2d0baff0a9 (patch) | |
tree | 3da4d2d12fdb903b1a85e93cf9514e5d93f7ae67 /ddb/db_cond.h | |
parent | d7348c94453d2662affecbb7605047044898ed19 (diff) | |
download | gnumach-c8cd13d8e9853752de5756ab42a98e2d0baff0a9.tar.gz gnumach-c8cd13d8e9853752de5756ab42a98e2d0baff0a9.tar.bz2 gnumach-c8cd13d8e9853752de5756ab42a98e2d0baff0a9.zip |
Fix ddb warnings introduced with -Wstrict-prototypes
Changed some ddb command functions to have the expected signature but
not all of them due to the being difficult to inter-dependency between
header files (for those just used cast).
Message-Id: <Y7UO9HTfpZ8U0Nfy@mars>
Diffstat (limited to 'ddb/db_cond.h')
-rw-r--r-- | ddb/db_cond.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/ddb/db_cond.h b/ddb/db_cond.h index 6b9c3a5b..c867c6ee 100644 --- a/ddb/db_cond.h +++ b/ddb/db_cond.h @@ -30,6 +30,10 @@ extern boolean_t db_cond_check (db_thread_breakpoint_t bkpt); extern void db_cond_print (db_thread_breakpoint_t bkpt); -extern void db_cond_cmd (void); +extern void db_cond_cmd ( + db_expr_t addr, + boolean_t have_addr, + db_expr_t count, + const char * modif); #endif /* _DDB_DB_COND_H_ */ |