diff options
| author | Martin Winter <mwinter@opensourcerouting.org> | 2019-02-26 08:19:49 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-26 08:19:49 +0700 |
| commit | 51127bc88c285e63b4cdff50b6e3f95f06f6893e (patch) | |
| tree | 6087f1f360328a0e3fb328b6ca5f5bc380112445 /lib/thread.c | |
| parent | 5a80b8c7c254b9955e357555ebd929ab9bc123ef (diff) | |
| parent | 0026ac15abdf156cc65d3583164a4df6f7e15ee9 (diff) | |
Merge pull request #3832 from kooky/rename_backet
Rename backet to bucket
Diffstat (limited to 'lib/thread.c')
| -rw-r--r-- | lib/thread.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/thread.c b/lib/thread.c index 8c1b3ff06d..055587434c 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -106,7 +106,7 @@ static void vty_out_cpu_thread_history(struct vty *vty, a->types & (1 << THREAD_EXECUTE) ? 'X' : ' ', a->funcname); } -static void cpu_record_hash_print(struct hash_backet *bucket, void *args[]) +static void cpu_record_hash_print(struct hash_bucket *bucket, void *args[]) { struct cpu_thread_history *totals = args[0]; struct cpu_thread_history copy; @@ -178,7 +178,7 @@ static void cpu_record_print(struct vty *vty, uint8_t filter) if (m->cpu_record->count) hash_iterate( m->cpu_record, - (void (*)(struct hash_backet *, + (void (*)(struct hash_bucket *, void *))cpu_record_hash_print, args); else @@ -202,7 +202,7 @@ static void cpu_record_print(struct vty *vty, uint8_t filter) vty_out_cpu_thread_history(vty, &tmp); } -static void cpu_record_hash_clear(struct hash_backet *bucket, void *args[]) +static void cpu_record_hash_clear(struct hash_bucket *bucket, void *args[]) { uint8_t *filter = args[0]; struct hash *cpu_record = args[1]; @@ -229,7 +229,7 @@ static void cpu_record_clear(uint8_t filter) void *args[2] = {tmp, m->cpu_record}; hash_iterate( m->cpu_record, - (void (*)(struct hash_backet *, + (void (*)(struct hash_bucket *, void *))cpu_record_hash_clear, args); } |
