1
0
mirror of https://github.com/gryf/wmaker.git synced 2025-12-19 20:38:08 +01:00

wmaker: Removed global variable 'WDelayedActionSet' and associated dead code

The variable's value was set to 0 but never changed afterwards, so
the function using it would never do anything.
This commit is contained in:
Christophe CURIS
2013-10-10 20:38:27 +02:00
committed by Carlos R. Mafra
parent a79c0e76d0
commit 24ce829f7f
2 changed files with 0 additions and 36 deletions

View File

@@ -83,9 +83,6 @@ WDDomain *WDWindowMaker = NULL;
WDDomain *WDWindowAttributes = NULL;
WDDomain *WDRootMenu = NULL;
/* special flags */
char WDelayedActionSet = 0;
/* notifications */
const char WMNManaged[] = "WMNManaged";
const char WMNUnmanaged[] = "WMNUnmanaged";

View File

@@ -90,11 +90,6 @@ extern WDDomain *WDRootMenu;
extern WDDomain *WDWindowAttributes;
extern WShortKey wKeyBindings[WKBD_LAST];
#ifndef HAVE_INOTIFY
/* special flags */
extern char WDelayedActionSet;
#endif
/***** Local *****/
static WScreen **wScreen = NULL;
static unsigned int _NumLockMask = 0;
@@ -143,28 +138,6 @@ static int handleXIO(Display * xio_dpy)
return 0;
}
#ifndef HAVE_INOTIFY
/*
*----------------------------------------------------------------------
* delayedAction-
* Action to be executed after the signal() handler is exited.
*----------------------------------------------------------------------
*/
static void delayedAction(void *cdata)
{
if (WDelayedActionSet == 0)
return;
WDelayedActionSet--;
/*
* Make the event dispatcher do whatever it needs to do,
* including handling zombie processes, restart and exit
* signals.
*/
DispatchEvent(NULL);
}
#endif
/*
*----------------------------------------------------------------------
* handleExitSig--
@@ -528,12 +501,6 @@ void StartUp(Bool defaultScreenOnly)
wPreferences.cursor[WCUR_EMPTY] = XCreatePixmapCursor(dpy, cur, cur, &black, &black, 0, 0);
XFreePixmap(dpy, cur);
#ifndef HAVE_INOTIFY
/* signal handler stuff that gets called when a signal is caught */
WMAddPersistentTimerHandler(500, delayedAction, NULL);
#endif
/* emergency exit... */
sig_action.sa_handler = handleSig;
sigemptyset(&sig_action.sa_mask);