Use 30 priority level and remove old debug code

This commit is contained in:
Ed Gonzalez 2015-01-15 12:02:55 -06:00
parent 72097c1f42
commit f053183349
2 changed files with 1 additions and 6 deletions

View file

@ -135,11 +135,6 @@ uint32 cmd_exit(int requester_fd, int argc,char **argv)
write(requester_fd, string1, strlen(string1));
// if(argc > 1 && tolower(*argv[1]) == 'r')
// end_firmware(power_reboot);
// else
// end_firmware(power_leaveon);
_exit(0);
return SUCCESS;
}

View file

@ -694,7 +694,7 @@ void sched_waveform_Init(void)
pthread_create(&_waveform_thread, NULL, &_sched_waveform_thread, NULL);
struct sched_param fifo_param;
fifo_param.sched_priority = 25;
fifo_param.sched_priority = 30;
pthread_setschedparam(_waveform_thread, SCHED_FIFO, &fifo_param);
}