11
11
12
12
13
13
enum {
14
- ALLOC_DEFAULT_BSIZE = 512 ,
14
+ ALLOC_DEFAULT_BSIZE = 1024 ,
15
+ TURN_THREADS = 4
15
16
};
16
17
17
18
@@ -23,8 +24,8 @@ struct tuple {
23
24
24
25
25
26
static struct turnd turnd ;
26
- static struct tmr tmr ;
27
-
27
+ static struct tmr timers [ TURN_THREADS ] ;
28
+ static thrd_t tid [ TURN_THREADS ];
28
29
29
30
struct turnd * turndp (void )
30
31
{
@@ -338,53 +339,53 @@ static struct restund_cmdsub cmd_turnreply = {
338
339
339
340
static void tmr_handler (void * arg )
340
341
{
341
- struct turnd * td = arg ;
342
+ struct tmr * tmr = arg ;
342
343
struct le * le ;
343
344
344
- pthread_mutex_lock ( & td -> mutex );
345
- if (!td -> run )
345
+ mtx_lock ( & turndp () -> mutex );
346
+ if (!turndp () -> run )
346
347
re_cancel ();
347
348
348
- LIST_FOREACH (& td -> re_map , le )
349
+ /* Reassign one allocation by time */
350
+ LIST_FOREACH (& turndp ()-> re_map , le )
349
351
{
350
352
struct allocation * al = le -> data ;
351
- pthread_mutex_lock (& al -> mutex );
353
+ mtx_lock (& al -> mutex );
352
354
udp_thread_attach (al -> rel_us );
353
355
udp_thread_attach (al -> rsv_us );
354
- pthread_mutex_unlock (& al -> mutex );
356
+ mtx_unlock (& al -> mutex );
355
357
}
356
- list_clear (& td -> re_map );
357
- pthread_mutex_unlock (& td -> mutex );
358
+ list_clear (& turndp ()-> re_map );
358
359
360
+ mtx_unlock (& turndp ()-> mutex );
359
361
360
- tmr_start (& tmr , 10 , tmr_handler , td );
362
+ tmr_start (tmr , 10 , tmr_handler , tmr );
361
363
}
362
364
363
365
364
- static void * thread_handler (void * arg )
366
+ static int thread_handler (void * arg )
365
367
{
366
- struct turnd * td = arg ;
368
+ struct tmr * tmr = arg ;
367
369
int err ;
368
370
369
371
err = re_thread_init ();
370
372
if (err ) {
371
373
restund_error ("turn: re_thread_init failed %m\n" , err );
372
- return NULL ;
374
+ return 0 ;
373
375
}
374
376
375
- tmr_start (& tmr , 10 , tmr_handler , td );
377
+ tmr_start (tmr , 10 , tmr_handler , tmr );
376
378
377
379
err = re_main (NULL );
378
380
if (err )
379
381
restund_error ("turn: re_main failed %m\n" , err );
380
382
381
- restund_warning ("EXIT turn thread\n" );
382
- tmr_cancel (& tmr );
383
+ tmr_cancel (tmr );
383
384
384
385
tmr_debug ();
385
386
re_thread_close ();
386
387
387
- return NULL ;
388
+ return 0 ;
388
389
}
389
390
390
391
@@ -462,8 +463,20 @@ static int module_init(void)
462
463
list_init (& turnd .re_map );
463
464
464
465
turnd .run = true;
465
- pthread_mutex_init (& turnd .mutex , NULL );
466
- err = pthread_create (& turnd .tid , NULL , thread_handler , & turnd );
466
+ err = mtx_init (& turnd .mutex , mtx_plain );
467
+ if (err ) {
468
+ restund_error ("turn: mtx_init err: %d\n" , err );
469
+ goto out ;
470
+ }
471
+
472
+ for (int i = 0 ; i < TURN_THREADS ; i ++ ) {
473
+ err = thrd_create (& tid [i ], thread_handler ,
474
+ & timers [i ]);
475
+ if (err ) {
476
+ restund_error ("turn: thrd_create err: %m\n" , err );
477
+ goto out ;
478
+ }
479
+ }
467
480
468
481
restund_debug ("turn: lifetime=%u ext=%j ext6=%j bsz=%u\n" ,
469
482
turnd .lifetime_max , & turnd .rel_addr , & turnd .rel_addr6 ,
@@ -476,10 +489,13 @@ static int module_init(void)
476
489
477
490
static int module_close (void )
478
491
{
479
- pthread_mutex_lock (& turnd .mutex );
492
+ mtx_lock (& turnd .mutex );
480
493
turnd .run = false;
481
- pthread_mutex_unlock (& turnd .mutex );
482
- pthread_join (turnd .tid , NULL );
494
+ mtx_unlock (& turnd .mutex );
495
+
496
+ for (int i = 0 ; i < TURN_THREADS ; i ++ ) {
497
+ thrd_join (tid [i ], NULL );
498
+ }
483
499
484
500
hash_flush (turnd .ht_alloc );
485
501
turnd .ht_alloc = mem_deref (turnd .ht_alloc );
0 commit comments