Skip to content
Snippets Groups Projects
Commit f6041748 authored by Moe Jette's avatar Moe Jette
Browse files

Report thread_id as unsigned long.

parent 848effeb
No related branches found
No related tags found
No related merge requests found
......@@ -250,7 +250,8 @@ static int _check_pending_threads(thd_t *thd, int count)
for (i = 0; i < count; i++) {
thd_t *tp = &thd[i];
if ((tp->state == DSH_ACTIVE) && ((now - tp->tstart) >= 2) ) {
debug2("sending SIGALRM to thread %d", tp->thread);
debug2("sending SIGALRM to thread %lu",
(unsigned long) tp->thread);
/*
* XXX: sending sigalrm to threads *seems* to
* generate problems with the pthread_manager
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment