diff options
| author | Dana Jansens <danakj@orodu.net> | 2008-01-16 18:44:22 -0500 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2008-01-16 18:44:22 -0500 |
| commit | 299687110d478a4928932f72031c345b27a01840 (patch) | |
| tree | ed47a7e191e7310db45478566b1bb8958777a70e /openbox/openbox.c | |
| parent | 2ee4251092a70af6a7c1826aaef01506dfcbf556 (diff) | |
use hash tables in ping.[ch] instead of a list. we're pinging every window, not just windows youre trying to close, so don't use datastructures that suck with lots of windows..
Diffstat (limited to 'openbox/openbox.c')
| -rw-r--r-- | openbox/openbox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/openbox/openbox.c b/openbox/openbox.c index 30a26609..48f31f91 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -43,6 +43,7 @@ #include "grab.h" #include "group.h" #include "config.h" +#include "ping.h" #include "mainloop.h" #include "gettext.h" #include "parser/parse.h" @@ -301,6 +302,7 @@ gint main(gint argc, gchar **argv) screen_startup(reconfigure); grab_startup(reconfigure); group_startup(reconfigure); + ping_startup(reconfigure); client_startup(reconfigure); dock_startup(reconfigure); moveresize_startup(reconfigure); @@ -360,6 +362,7 @@ gint main(gint argc, gchar **argv) moveresize_shutdown(reconfigure); dock_shutdown(reconfigure); client_shutdown(reconfigure); + ping_shutdown(reconfigure); group_shutdown(reconfigure); grab_shutdown(reconfigure); screen_shutdown(reconfigure); |
