Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 926 → Rev 927

/shark/trunk/drivers/oldsnd/sound.c
167,7 → 167,7
p_pl = task_create("sb_Player",proc_play, &m, NULL);
if (p_pl == NIL) {
cprintf("Sound.c: Cannot create sb_Player\n");
sys_end();
exit(1);
return ESRCH;
}
task_activate(p_pl);
250,7 → 250,7
p_sample = task_create("sb_Sampler",proc_sample, &m, NULL);
if (p_sample == NIL) {
cprintf("Sound.c: Cannot create sb_Sampler\n");
sys_end();
exit(1);
return ESRCH;
}
task_activate(p_sample);
325,7 → 325,7
if (p_sb == NIL) {
cprintf("Sound.c: Cannot create sb_EndDMA\n");
cprintf("errno=%d\n",errno);
sys_end();
exit(1);
return ESRCH;
}
//sb_dev.period = period;