From 77532530846b8004582ba03d02332c7c30d3002e Mon Sep 17 00:00:00 2001 From: Jeff Squyres Date: Tue, 7 Dec 2004 22:35:35 +0000 Subject: [PATCH] Eliminate dead code. This commit was SVN r3740. --- src/event/event.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/event/event.c b/src/event/event.c index 8fad476921..42637b4872 100644 --- a/src/event/event.c +++ b/src/event/event.c @@ -164,6 +164,9 @@ static RB_PROTOTYPE(ompi_event_tree, ompi_event, ev_timeout_node, compare) static RB_GENERATE(ompi_event_tree, ompi_event, ev_timeout_node, compare) +#if 0 + /* Open MPI: JMS As far as I can tell, this function is not used + anywhere */ static int ompi_timeout_next(struct timeval *tv) { struct timeval dflt = OMPI_TIMEOUT_DEFAULT; @@ -186,6 +189,7 @@ static int ompi_timeout_next(struct timeval *tv) timersub(&ev->ev_timeout, &now, tv); return (0); } +#endif /* run loop for dispatch thread */ static void* ompi_event_run(ompi_object_t* arg)