Home
last modified time | relevance | path

Searched refs:g_DebugServerPipe (Results 1 – 1 of 1) sorted by relevance

/reactos/sdk/tools/pipetools/
H A Dpipespy.cpp29 HANDLE g_DebugServerPipe, g_DebugClientPipe; variable
120 …adOverlapped.OtherPipe = ReadOverlapped.Pipe == g_DebugServerPipe ? g_DebugClientPipe : g_DebugSer… in pipeserver()
121 ReadOverlapped.Server = ReadOverlapped.Pipe == g_DebugServerPipe; in pipeserver()
159g_DebugServerPipe = CreateNamedPipe(av[1], PIPE_ACCESS_DUPLEX | FILE_FLAG_OVERLAPPED, PIPE_TYPE_BY… in main()
162 if(g_DebugServerPipe == INVALID_HANDLE_VALUE) { in main()
172 CloseHandle(g_DebugServerPipe); in main()
177 _beginthread(pipeserver, 0, (void*)g_DebugServerPipe); in main()