summaryrefslogtreecommitdiff
path: root/tests/lib/test_sig.c
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2021-11-11 14:28:54 -0500
committerDonald Sharp <sharpd@nvidia.com>2021-11-11 14:41:27 -0500
commit7cc91e67a3f4dc16bec63fbaac097719d401a578 (patch)
tree1e003886f820d89f3d37ad9d2de6f33636f5d19f /tests/lib/test_sig.c
parent7347a4859d4b984cea0aef769a16622d3f02e44f (diff)
*: Convert quagga_signal_X to frr_signal_X
Naming functions/data structures more appropriately for the project we are actually in. Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'tests/lib/test_sig.c')
-rw-r--r--tests/lib/test_sig.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/lib/test_sig.c b/tests/lib/test_sig.c
index 2aceafb8f0..9165f1850f 100644
--- a/tests/lib/test_sig.c
+++ b/tests/lib/test_sig.c
@@ -36,18 +36,18 @@ static void sigusr2(void)
printf("processed usr2\n");
}
-struct quagga_signal_t sigs[] = {{
- .signal = SIGHUP,
- .handler = &sighup,
- },
- {
- .signal = SIGUSR1,
- .handler = &sigusr1,
- },
- {
- .signal = SIGUSR2,
- .handler = &sigusr2,
- }};
+struct frr_signal_t sigs[] = {{
+ .signal = SIGHUP,
+ .handler = &sighup,
+ },
+ {
+ .signal = SIGUSR1,
+ .handler = &sigusr1,
+ },
+ {
+ .signal = SIGUSR2,
+ .handler = &sigusr2,
+ }};
struct thread_master *master;
struct thread t;