diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2016-11-16 15:00:52 +0900 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2016-12-01 17:25:56 +0100 |
| commit | 0b84f294904959a4be58db6fe0e89d71b2c1f401 (patch) | |
| tree | f52c765644294f314ede33506f29b6888439b904 /lib/thread.c | |
| parent | 0577b824e137f143c899a567b1bbeb109841c796 (diff) | |
*: make DEFUN installations file-local
This moves all install_element calls into the file where the DEFUNs are
located. This fixes several small related bugs:
- ospf6d wasn't installing a "no interface FOO" command
- zebra had a useless copy of "interface FOO"
- pimd's copy of "interface FOO" was not setting qobj_index, which means
"description LINE" commands would fail with an error
The next commit will do the actual act of making "foo_cmd" static.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'lib/thread.c')
| -rw-r--r-- | lib/thread.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/thread.c b/lib/thread.c index ce93530ff1..eac7f3250b 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -423,6 +423,13 @@ DEFUN (clear_thread_cpu, return CMD_SUCCESS; } +void +thread_cmd_init (void) +{ + install_element (VIEW_NODE, &show_thread_cpu_cmd); + install_element (ENABLE_NODE, &clear_thread_cpu_cmd); +} + static int thread_timer_cmp(void *a, void *b) { |
