]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/mem/Page.cc
merge from trunk
[thirdparty/squid.git] / src / ipc / mem / Page.cc
1 /*
2 * DEBUG: section 54 Interprocess Communication
3 *
4 */
5
6 #include "squid.h"
7 #include "ipc/mem/Page.h"
8
9 #include <iostream>
10
11 std::ostream &Ipc::Mem::operator <<(std::ostream &os, const PageId &page)
12 {
13 return os << "sh_page" << page.pool << '.' << page.number;
14 }