825e89479aef571a205d8ae82b845df92b3274bc
[mTask.git] / client / spec.c
1 //TODO
2 #include "spec.h"
3 #include "interface.h"
4
5 void spec_send(void)
6 {
7 debug("Writing spec");
8 write_byte('c');
9 write_byte(0 | (HAVELED << 0) | (HAVEAIO << 1) | (HAVEDIO << 2));
10 write16(MAXTASKS);
11 write16(MAXSDSS);
12 write_byte('\n');
13 debug("Done writing spec");
14 }