From dc81807a5b2b3dc8138d74e23ece71402a6c03b4 Mon Sep 17 00:00:00 2001 From: paul Date: Thu, 19 May 2005 01:30:53 +0000 Subject: 2005-05-19 Paul Jakma * thread.c: (thread_cancel_event) the number of pending events cancelled is potentially useful information, dont throw it away, pass it back to the caller. --- lib/thread.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/thread.c') diff --git a/lib/thread.c b/lib/thread.c index a18db25a..32fc15ef 100644 --- a/lib/thread.c +++ b/lib/thread.c @@ -663,9 +663,10 @@ thread_cancel (struct thread *thread) } /* Delete all events which has argument value arg. */ -void +unsigned int thread_cancel_event (struct thread_master *m, void *arg) { + unsigned int ret = 0; struct thread *thread; thread = m->event.head; @@ -678,11 +679,13 @@ thread_cancel_event (struct thread_master *m, void *arg) if (t->arg == arg) { + ret++; thread_list_delete (&m->event, t); t->type = THREAD_UNUSED; thread_add_unuse (m, t); } } + return ret; } static struct timeval * -- cgit v1.2.1