repo.or.cz
/
ACE_TAO.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cleanup ACE_HAS_PTHREAD_SIGMASK_PROTOTYPE, all platforms support it so far as I can...
[ACE_TAO.git]
/
ACE
/
protocols
/
ace
/
RMCast
/
Simulator.h
blob
d5640997aaa05fc27424a8e705a975834a654062
1
// author : Boris Kolpackov <boris@kolpackov.net>
2
3
#ifndef ACE_RMCAST_SIMULATOR_H
4
#define ACE_RMCAST_SIMULATOR_H
5
6
#include
"Stack.h"
7
#include
"Protocol.h"
8
#include
"Bits.h"
9
10
namespace
ACE_RMCast
11
{
12
class
Simulator
:
public
Element
13
{
14
public
:
15
Simulator
();
16
17
public
:
18
virtual
void
19
send
(
Message_ptr m
);
20
21
private
:
22
Message_ptr hold_
;
23
Mutex mutex_
;
24
};
25
}
26
27
28
#endif
// ACE_RMCAST_SIMULATOR_H