This commit is contained in:
Sukchan Lee 2017-02-15 09:17:44 +09:00
parent 4da3365767
commit 224d5ba3f9
2 changed files with 5 additions and 1 deletions

View File

@ -55,7 +55,7 @@ void *THREAD_FUNC mme_main(void *data)
prev_tm = time_now();
while ((!thread_should_stop()) || (!msgq_is_empty(queue_id)))
while ((!thread_should_stop()))
{
r = event_timedrecv(queue_id, &event, EVENT_WAIT_TIMEOUT);

View File

@ -110,6 +110,8 @@ static void enb_setup_test1(abts_case *tc, void *data)
}
pkbuf_free(recvbuf);
core_sleep(time_from_msec(300));
}
#define NUM_OF_TEST_ENB 32
@ -156,6 +158,8 @@ static void enb_setup_test2(abts_case *tc, void *data)
}
pkbuf_free(recvbuf);
core_sleep(time_from_sec(1));
}
abts_suite *test_enb_setup(abts_suite *suite)