SIM: Comment out skip scheduler debug output that can hang the simulation.

This commit is contained in:
Gregory Nutt 2016-06-21 08:59:01 -06:00
parent c5ac473bc0
commit 485aa6b231
3 changed files with 3 additions and 3 deletions

View File

@ -83,7 +83,7 @@ void up_block_task(struct tcb_s *tcb, tstate_t task_state)
ASSERT((tcb->task_state >= FIRST_READY_TO_RUN_STATE) && ASSERT((tcb->task_state >= FIRST_READY_TO_RUN_STATE) &&
(tcb->task_state <= LAST_READY_TO_RUN_STATE)); (tcb->task_state <= LAST_READY_TO_RUN_STATE));
sinfo("Blocking TCB=%p\n", tcb); //sinfo("Blocking TCB=%p\n", tcb);
/* Remove the tcb task from the ready-to-run list. If we /* Remove the tcb task from the ready-to-run list. If we
* are blocking the task at the head of the task list (the * are blocking the task at the head of the task list (the

View File

@ -322,7 +322,7 @@ int syslog_flush_intbuffer(FAR const struct syslog_channel_s *channel,
{ {
/* Transfer one character to time. This is inefficient, but is /* Transfer one character to time. This is inefficient, but is
* done in this way to: (1) Deal with concurrent modification of * done in this way to: (1) Deal with concurrent modification of
* the interrutp buffer from interrupt activity, (2) Avoid keeper * the interrupt buffer from interrupt activity, (2) Avoid keeper
* interrupts disabled for a long time, and (3) to handler * interrupts disabled for a long time, and (3) to handler
* wraparound of the circular buffer indices. * wraparound of the circular buffer indices.
*/ */

View File

@ -84,7 +84,7 @@ static inline void _files_semtake(FAR struct filelist *list)
* Name: file_detach * Name: file_detach
* *
* Description: * Description:
* This function is used to device drivers to create a task-independent * This function is used in device drivers to create a task-independent
* handle to an entity in the file system. file_detach() duplicates the * handle to an entity in the file system. file_detach() duplicates the
* 'struct file' that underlies the file descriptor, then closes the file * 'struct file' that underlies the file descriptor, then closes the file
* descriptor. * descriptor.