From c460e9758e8fcb33b958beca85d70b67857758d4 Mon Sep 17 00:00:00 2001 From: oga Date: Mon, 24 Aug 2009 21:22:48 +0000 Subject: Instead of having a function that just calls TAILQ_INIT on a global, use TAILQ_HEAD_INITIALIZER() and drop the function. ok okan@ --- calmwm.c | 8 +++----- calmwm.h | 4 +--- client.c | 8 +------- screen.c | 8 +------- 4 files changed, 6 insertions(+), 22 deletions(-) diff --git a/calmwm.c b/calmwm.c index a656823..3a3a813 100644 --- a/calmwm.c +++ b/calmwm.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.c,v 1.42 2009/06/26 12:21:58 okan Exp $ + * $Id: calmwm.c,v 1.43 2009/08/24 21:22:48 oga Exp $ */ #include "headers.h" @@ -29,10 +29,10 @@ Cursor Cursor_select; Cursor Cursor_default; Cursor Cursor_question; -struct screen_ctx_q Screenq; +struct screen_ctx_q Screenq = TAILQ_HEAD_INITIALIZER(Screenq); struct screen_ctx *Curscreen; -struct client_ctx_q Clientq; +struct client_ctx_q Clientq = TAILQ_HEAD_INITIALIZER(Clientq); int HasXinerama, HasRandr, Randr_ev; int Starting; @@ -73,9 +73,7 @@ main(int argc, char **argv) Starting = 1; dpy_init(display_name); - screen_init(); group_init(); - client_init(); bzero(&Conf, sizeof(Conf)); conf_setup(&Conf, conf_file); diff --git a/calmwm.h b/calmwm.h index 87108e3..d2dbd4a 100644 --- a/calmwm.h +++ b/calmwm.h @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: calmwm.h,v 1.94 2009/06/26 12:21:58 okan Exp $ + * $Id: calmwm.h,v 1.95 2009/08/24 21:22:48 oga Exp $ */ #ifndef _CALMWM_H_ @@ -327,7 +327,6 @@ int input_keycodetrans(KeyCode, u_int, enum ctltype *, __dead void usage(void); struct client_ctx *client_find(Window); -void client_init(void); struct client_ctx *client_new(Window, struct screen_ctx *, int); int client_delete(struct client_ctx *); void client_setactive(struct client_ctx *, int); @@ -388,7 +387,6 @@ void *xmalloc(size_t); void *xcalloc(size_t, size_t); char *xstrdup(const char *); -void screen_init(void); struct screen_ctx *screen_fromroot(Window); struct screen_ctx *screen_current(void); void screen_updatestackingorder(void); diff --git a/client.c b/client.c index 03b898a..2814aaf 100644 --- a/client.c +++ b/client.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: client.c,v 1.58 2009/08/24 17:04:39 oga Exp $ + * $Id: client.c,v 1.59 2009/08/24 21:22:48 oga Exp $ */ #include "headers.h" @@ -32,12 +32,6 @@ static int client_inbound(struct client_ctx *, int, int); static char emptystring[] = ""; struct client_ctx *_curcc = NULL; -void -client_init(void) -{ - TAILQ_INIT(&Clientq); -} - struct client_ctx * client_find(Window win) { diff --git a/screen.c b/screen.c index d1a5e1b..55136a1 100644 --- a/screen.c +++ b/screen.c @@ -15,7 +15,7 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * - * $Id: screen.c,v 1.16 2009/06/26 12:21:58 okan Exp $ + * $Id: screen.c,v 1.17 2009/08/24 21:22:48 oga Exp $ */ #include "headers.h" @@ -23,12 +23,6 @@ extern struct screen_ctx *Curscreen; -void -screen_init(void) -{ - TAILQ_INIT(&Screenq); -} - struct screen_ctx * screen_fromroot(Window rootwin) { -- cgit v1.2.3-2-gb3c3