]> git.ipfire.org Git - thirdparty/squid.git/blob - src/ipc/mem/Page.cc
Merged from parent (trunk r11700, v3.2.0.11+).
[thirdparty/squid.git] / src / ipc / mem / Page.cc
1 /*
2 * $Id$
3 *
4 * DEBUG: section 54 Interprocess Communication
5 *
6 */
7
8 #include "config.h"
9 #include "ipc/mem/Page.h"
10
11 #if HAVE_IOSTREAM
12 #include <iostream>
13 #endif
14
15
16 std::ostream &Ipc::Mem::operator <<(std::ostream &os, const PageId &page)
17 {
18 return os << "sh_page" << page.pool << '.' << page.number;
19 }