From cd509a62377ca022c09e44b91a7e5d1ec9d97adf Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 18 May 2007 01:23:35 +0000 Subject: r22985: don't do checkins late at night .... thanks to Volker for spotting this! (This used to be commit d28fc5f87fd4d9a9843d1295fe2a181922a476fc) --- source4/lib/events/events_standard.c | 2 -- 1 file changed, 2 deletions(-) (limited to 'source4') diff --git a/source4/lib/events/events_standard.c b/source4/lib/events/events_standard.c index 8150a069c0..fd4b88008b 100644 --- a/source4/lib/events/events_standard.c +++ b/source4/lib/events/events_standard.c @@ -72,9 +72,7 @@ struct std_event_context { */ static void epoll_fallback_to_select(struct std_event_context *std_ev, const char *reason) { - const char *cmd = talloc_asprintf(std_ev, "xterm -e gdb --pid %u", getpid()); DEBUG(0,("%s (%s) - falling back to select()\n", reason, strerror(errno))); - system(cmd); close(std_ev->epoll_fd); std_ev->epoll_fd = -1; talloc_set_destructor(std_ev, NULL); -- cgit