rpcrt4: Abstract access to the connection's waitable object.

This commit is contained in:
Mike McCormack 2006-04-20 18:02:43 +09:00 committed by Alexandre Julliard
parent 555cf38269
commit 3a4a76be2f

View File

@ -455,6 +455,11 @@ static void RPCRT4_new_client(RpcConnection* conn)
CloseHandle( thread );
}
static HANDLE rpcrt4_conn_get_wait_object(RpcConnection *conn)
{
return conn->ovl.hEvent;
}
static DWORD CALLBACK RPCRT4_server_thread(LPVOID the_arg)
{
HANDLE m_event = mgr_event, b_handle;
@ -476,7 +481,8 @@ static DWORD CALLBACK RPCRT4_server_thread(LPVOID the_arg)
conn = cps->conn;
while (conn) {
RPCRT4_OpenConnection(conn);
if (conn->ovl.hEvent) count++;
if (rpcrt4_conn_get_wait_object(conn))
count++;
conn = conn->Next;
}
cps = cps->Next;
@ -493,7 +499,8 @@ static DWORD CALLBACK RPCRT4_server_thread(LPVOID the_arg)
while (cps) {
conn = cps->conn;
while (conn) {
if (conn->ovl.hEvent) objs[count++] = conn->ovl.hEvent;
if ((objs[count] = rpcrt4_conn_get_wait_object(conn)))
count++;
conn = conn->Next;
}
cps = cps->Next;
@ -529,18 +536,18 @@ static DWORD CALLBACK RPCRT4_server_thread(LPVOID the_arg)
while (cps) {
conn = cps->conn;
while (conn) {
if (conn->ovl.hEvent == b_handle) break;
if (b_handle == rpcrt4_conn_get_wait_object(conn)) break;
conn = conn->Next;
}
if (conn) break;
cps = cps->Next;
}
cconn = NULL;
if (conn) RPCRT4_SpawnConnection(&cconn, conn);
LeaveCriticalSection(&server_cs);
if (!conn) {
if (conn)
RPCRT4_SpawnConnection(&cconn, conn);
else
ERR("failed to locate connection for handle %p\n", b_handle);
}
LeaveCriticalSection(&server_cs);
if (cconn) RPCRT4_new_client(cconn);
}
}