blob: 78563281694cefb293660c25133dce77722eafee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// file : TMCast/Protocol.cpp
// author : Boris Kolpackov <boris@dre.vanderbilt.edu>
// cvs-id : $Id$
#include "Protocol.hpp"
namespace TMCast
{
namespace Protocol
{
namespace
{
char const* labels[] = {
"NONE", "BEGIN", "COMMIT", "ABORT", "COMMITED", "ABORTED"};
}
/*
std::string
tslabel (Protocol::TransactionStatus s)
{
return labels[s];
}
std::ostream&
operator << (std::ostream& o, Transaction const& t)
{
return o << "{" << t.id << "; " << tslabel (t.status) << "}";
}
*/
}
}
|