2
0
mirror of https://github.com/openvswitch/ovs synced 2025-10-29 15:28:56 +00:00

signals: New function signal_unregister().

Fixes a very minor memory leak in ovs-vswitchd reported by valgrind.
This commit is contained in:
Ben Pfaff
2011-06-07 13:17:57 -07:00
parent d3c110b648
commit 5a08f9b044
3 changed files with 21 additions and 4 deletions

View File

@@ -21,7 +21,10 @@
#include <stdbool.h>
void signal_init(void);
struct signal *signal_register(int signr);
void signal_unregister(struct signal *);
bool signal_poll(struct signal *);
void signal_wait(struct signal *);