2011-07-12 17:27:17 -05:00
|
|
|
use std;
|
2011-12-13 18:25:51 -06:00
|
|
|
import task;
|
|
|
|
import comm;
|
|
|
|
import comm::chan;
|
|
|
|
import comm::send;
|
|
|
|
import comm::recv;
|
2011-07-12 17:27:17 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
fn main() { log "===== WITHOUT THREADS ====="; test00(); }
|
2010-07-19 16:05:18 -05:00
|
|
|
|
2011-10-20 22:34:04 -05:00
|
|
|
fn test00_start(&&args: (chan<int>, int, int)) {
|
2011-10-13 17:37:07 -05:00
|
|
|
let (ch, message, count) = args;
|
2010-07-19 16:05:18 -05:00
|
|
|
log "Starting test00_start";
|
2011-07-27 07:19:39 -05:00
|
|
|
let i: int = 0;
|
2011-08-10 16:38:49 -05:00
|
|
|
while i < count {
|
|
|
|
log "Sending Message";
|
2011-08-19 17:16:48 -05:00
|
|
|
send(ch, message + 0);
|
2011-08-10 16:38:49 -05:00
|
|
|
i = i + 1;
|
|
|
|
}
|
2010-07-19 16:05:18 -05:00
|
|
|
log "Ending test00_start";
|
|
|
|
}
|
|
|
|
|
2011-07-12 17:27:17 -05:00
|
|
|
fn test00() {
|
2011-07-27 07:19:39 -05:00
|
|
|
let number_of_tasks: int = 16;
|
|
|
|
let number_of_messages: int = 4;
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
log "Creating tasks";
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-08-25 13:20:43 -05:00
|
|
|
let po = comm::port();
|
|
|
|
let ch = chan(po);
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let i: int = 0;
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
// Create and spawn tasks...
|
2011-08-12 20:34:19 -05:00
|
|
|
let tasks = [];
|
2011-07-27 07:19:39 -05:00
|
|
|
while i < number_of_tasks {
|
2011-10-13 23:23:07 -05:00
|
|
|
tasks += [task::spawn_joinable(
|
2011-10-13 17:37:07 -05:00
|
|
|
(ch, i, number_of_messages), test00_start)];
|
2010-08-09 08:53:37 -05:00
|
|
|
i = i + 1;
|
2010-07-19 16:05:18 -05:00
|
|
|
}
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
// Read from spawned tasks...
|
2011-08-12 20:34:19 -05:00
|
|
|
let sum = 0;
|
2011-08-25 13:20:43 -05:00
|
|
|
for t in tasks {
|
2010-07-19 16:05:18 -05:00
|
|
|
i = 0;
|
2011-07-27 07:19:39 -05:00
|
|
|
while i < number_of_messages {
|
2011-08-25 13:20:43 -05:00
|
|
|
let value = recv(po);
|
2010-07-19 16:05:18 -05:00
|
|
|
sum += value;
|
|
|
|
i = i + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Join spawned tasks...
|
2011-08-25 13:20:43 -05:00
|
|
|
for t in tasks { task::join(t); }
|
2011-07-13 17:44:09 -05:00
|
|
|
|
2010-07-19 16:05:18 -05:00
|
|
|
log "Completed: Final number is: ";
|
2011-08-12 20:34:19 -05:00
|
|
|
log_err sum;
|
2011-07-13 17:44:09 -05:00
|
|
|
// assert (sum == (((number_of_tasks * (number_of_tasks - 1)) / 2) *
|
2010-08-09 08:53:37 -05:00
|
|
|
// number_of_messages));
|
2011-05-02 19:47:24 -05:00
|
|
|
assert (sum == 480);
|
2011-08-06 12:07:39 -05:00
|
|
|
}
|