summaryrefslogtreecommitdiffstats
path: root/sys/ddb/db_watch.c
diff options
context:
space:
mode:
authoralfred <alfred@FreeBSD.org>2002-03-20 05:14:42 +0000
committeralfred <alfred@FreeBSD.org>2002-03-20 05:14:42 +0000
commiteddc6122c99ccaa9c147f78f44588a5757d3f046 (patch)
tree5fcd19c5c990fd9d830071523f9c3dc5cfb35586 /sys/ddb/db_watch.c
parent62379fef927268e564719e3e766bb3900ef387c7 (diff)
downloadFreeBSD-src-eddc6122c99ccaa9c147f78f44588a5757d3f046.zip
FreeBSD-src-eddc6122c99ccaa9c147f78f44588a5757d3f046.tar.gz
Remove __P.
Diffstat (limited to 'sys/ddb/db_watch.c')
-rw-r--r--sys/ddb/db_watch.c23
1 files changed, 11 insertions, 12 deletions
diff --git a/sys/ddb/db_watch.c b/sys/ddb/db_watch.c
index abfb853..f25b295 100644
--- a/sys/ddb/db_watch.c
+++ b/sys/ddb/db_watch.c
@@ -55,21 +55,20 @@ static db_watchpoint_t db_next_free_watchpoint = &db_watch_table[0];
static db_watchpoint_t db_free_watchpoints = 0;
static db_watchpoint_t db_watchpoint_list = 0;
-static db_watchpoint_t db_watchpoint_alloc __P((void));
-static void db_watchpoint_free __P((db_watchpoint_t watch));
-static void db_delete_watchpoint __P((vm_map_t map,
- db_addr_t addr));
+static db_watchpoint_t db_watchpoint_alloc(void);
+static void db_watchpoint_free(db_watchpoint_t watch);
+static void db_delete_watchpoint(vm_map_t map, db_addr_t addr);
#ifdef notused
-static boolean_t db_find_watchpoint __P((vm_map_t map, db_addr_t addr,
- db_regs_t *regs));
+static boolean_t db_find_watchpoint(vm_map_t map, db_addr_t addr,
+ db_regs_t *regs);
#endif
-static void db_list_watchpoints __P((void));
-static void db_set_watchpoint __P((vm_map_t map, db_addr_t addr,
- vm_size_t size));
+static void db_list_watchpoints(void);
+static void db_set_watchpoint(vm_map_t map, db_addr_t addr,
+ vm_size_t size);
-int db_md_set_watchpoint __P((db_expr_t addr, db_expr_t size));
-int db_md_clr_watchpoint __P((db_expr_t addr, db_expr_t size));
-void db_md_list_watchpoints __P((void));
+int db_md_set_watchpoint(db_expr_t addr, db_expr_t size);
+int db_md_clr_watchpoint(db_expr_t addr, db_expr_t size);
+void db_md_list_watchpoints(void);
db_watchpoint_t
OpenPOWER on IntegriCloud