* Called by pthread_create() */
| 632 | * Called by pthread_create() |
| 633 | */ |
| 634 | static void * |
| 635 | thread_function(void *p) |
| 636 | { |
| 637 | struct winthread *wt = (struct winthread *) p; |
| 638 | draw_loop(wt); |
| 639 | return NULL; |
| 640 | } |
| 641 | |
| 642 | |
| 643 | /* |
nothing calls this directly
no test coverage detected