r22985: don't do checkins late at night ....
authorAndrew Tridgell <tridge@samba.org>
Fri, 18 May 2007 01:23:35 +0000 (01:23 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 19:52:35 +0000 (14:52 -0500)
thanks to Volker for spotting this!
(This used to be commit d28fc5f87fd4d9a9843d1295fe2a181922a476fc)

source4/lib/events/events_standard.c

index 8150a069c0f4b74f7ee798b54cc378e9fdbf360b..fd4b88008b1335b08ada9ef902ad4612fbe76320 100644 (file)
@@ -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);