mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-20 04:48:06 +01:00
event.c: Make two functions static
Saves 120 bytes: [mafra@Pilar:wmaker.git]$ size src/event.o* text data bss dec hex filename 12568 0 1068 13636 3544 src/event.o.new 12688 0 1068 13756 35bc src/event.o.old
This commit is contained in:
13
src/event.c
13
src/event.c
@@ -130,6 +130,9 @@ static void handleKeyPress(XEvent *event);
|
|||||||
static void handleFocusIn(XEvent *event);
|
static void handleFocusIn(XEvent *event);
|
||||||
static void handleMotionNotify(XEvent *event);
|
static void handleMotionNotify(XEvent *event);
|
||||||
static void handleVisibilityNotify(XEvent *event);
|
static void handleVisibilityNotify(XEvent *event);
|
||||||
|
static void handle_inotify_events(int fd, int wd);
|
||||||
|
static void wdelete_death_handler(WMagicNumber id);
|
||||||
|
|
||||||
|
|
||||||
#ifdef SHAPE
|
#ifdef SHAPE
|
||||||
static void handleShapeNotify(XEvent *event);
|
static void handleShapeNotify(XEvent *event);
|
||||||
@@ -182,7 +185,7 @@ WMagicNumber wAddDeathHandler(pid_t pid, WDeathHandler * callback, void *cdata)
|
|||||||
return handler;
|
return handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
void wDeleteDeathHandler(WMagicNumber id)
|
static void wdelete_death_handler(WMagicNumber id)
|
||||||
{
|
{
|
||||||
DeathHandler *handler = (DeathHandler *) id;
|
DeathHandler *handler = (DeathHandler *) id;
|
||||||
|
|
||||||
@@ -312,7 +315,7 @@ void DispatchEvent(XEvent * event)
|
|||||||
#ifdef HAVE_INOTIFY
|
#ifdef HAVE_INOTIFY
|
||||||
/*
|
/*
|
||||||
*----------------------------------------------------------------------
|
*----------------------------------------------------------------------
|
||||||
* inotifyHandleEvents-
|
* handle_inotify_events-
|
||||||
* Check for inotify events
|
* Check for inotify events
|
||||||
*
|
*
|
||||||
* Returns:
|
* Returns:
|
||||||
@@ -325,7 +328,7 @@ void DispatchEvent(XEvent * event)
|
|||||||
*/
|
*/
|
||||||
/* allow 5 simultaneous events, with path + filenames up to 64 chars */
|
/* allow 5 simultaneous events, with path + filenames up to 64 chars */
|
||||||
#define BUFF_SIZE ((sizeof(struct inotify_event) + 64)*5)
|
#define BUFF_SIZE ((sizeof(struct inotify_event) + 64)*5)
|
||||||
void inotifyHandleEvents(int fd, int wd)
|
static void handle_inotify_events(int fd, int wd)
|
||||||
{
|
{
|
||||||
extern void wDefaultsCheckDomains(void *);
|
extern void wDefaultsCheckDomains(void *);
|
||||||
ssize_t eventQLength, i = 0;
|
ssize_t eventQLength, i = 0;
|
||||||
@@ -421,7 +424,7 @@ void EventLoop(void)
|
|||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
if (FD_ISSET(inotifyFD, &rfds))
|
if (FD_ISSET(inotifyFD, &rfds))
|
||||||
inotifyHandleEvents(inotifyFD, inotifyWD);
|
handle_inotify_events(inotifyFD, inotifyWD);
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
@@ -514,7 +517,7 @@ static void handleDeadProcess(void *foo)
|
|||||||
if (tmp->pid == deadProcesses[deadProcessPtr].pid) {
|
if (tmp->pid == deadProcesses[deadProcessPtr].pid) {
|
||||||
(*tmp->callback) (tmp->pid,
|
(*tmp->callback) (tmp->pid,
|
||||||
deadProcesses[deadProcessPtr].exit_status, tmp->client_data);
|
deadProcesses[deadProcessPtr].exit_status, tmp->client_data);
|
||||||
wDeleteDeathHandler(tmp);
|
wdelete_death_handler(tmp);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user