Пример #1
0
			~SocketPair()
			{
				closeParent();
				closeChild();
			}
Пример #2
0
void spawn(int sock) {
	if (!sock) return;			
	if (fork()) closeParent(sock);
	else while (!done) work(sock);
}