2010-07-28 18:46:13 -05:00
|
|
|
#ifndef RUST_PORT_H
|
|
|
|
#define RUST_PORT_H
|
|
|
|
|
|
|
|
class rust_port : public maybe_proxy<rust_port>,
|
2011-07-07 13:53:08 -05:00
|
|
|
public kernel_owned<rust_port> {
|
2010-07-28 18:46:13 -05:00
|
|
|
|
|
|
|
public:
|
2011-07-07 13:53:08 -05:00
|
|
|
rust_kernel *kernel;
|
2010-07-28 18:46:13 -05:00
|
|
|
rust_task *task;
|
|
|
|
size_t unit_sz;
|
|
|
|
ptr_vec<rust_token> writers;
|
|
|
|
ptr_vec<rust_chan> chans;
|
|
|
|
|
|
|
|
// Data sent to this port from remote tasks is buffered in this channel.
|
|
|
|
rust_chan *remote_channel;
|
|
|
|
|
2011-07-07 13:53:08 -05:00
|
|
|
lock_and_signal lock;
|
|
|
|
|
2010-07-28 18:46:13 -05:00
|
|
|
rust_port(rust_task *task, size_t unit_sz);
|
|
|
|
~rust_port();
|
2010-08-09 09:52:07 -05:00
|
|
|
void log_state();
|
2010-08-09 10:15:34 -05:00
|
|
|
bool receive(void *dptr);
|
2010-07-28 18:46:13 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: C++
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-07-13 15:51:20 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-07-28 18:46:13 -05:00
|
|
|
// End:
|
|
|
|
//
|
|
|
|
|
|
|
|
#endif /* RUST_PORT_H */
|