Subversion Repositories mdb

Rev

Rev 59 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 59 Rev 60
Line 556... Line 556...
556
	/* Start a thread and call the callback function after the waiting time
556
	/* Start a thread and call the callback function after the waiting time
557
	 * is over.
557
	 * is over.
558
	 */
558
	 */
559
	usleep(ms);
559
	usleep(ms);
560
 
560
 
561
	// Prepare the thread attributes
561
	/* Prepare the thread attributes */
562
	if (pthread_attr_init(&attr) != 0)
562
	if (pthread_attr_init(&attr) != 0)
563
	{
563
	{
564
		syslog(LOG_DAEMON,"Error getting thread attributes.");
564
		syslog(LOG_DAEMON,"Error getting thread attributes.");
565
		return;
565
		return;
566
	}
566
	}