Skip to content
Snippets Groups Projects
Commit 6bd6a7cf authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Report exit status of pthread_create()

parent 956fe808
No related branches found
No related tags found
No related merge requests found
......@@ -200,10 +200,11 @@ main( int argc, char **argv )
time( &starttime );
if ( pthread_create( &listener_tid, NULL, slapd_daemon,
(void *) port ) != 0 ) {
if ( status = pthread_create( &listener_tid, NULL,
slapd_daemon, (void *) port ) != 0 )
{
Debug( LDAP_DEBUG_ANY,
"listener pthread_create failed\n", 0, 0, 0 );
"listener pthread_create failed (%d)\n", status, 0, 0 );
exit( 1 );
}
......
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