1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
/*
This file is part of the KDE libraries
Copyright (C) 2005 Andreas Roth <aroth@arsoft-online.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
//this file is included by dcopserver.cpp
#include <tqeventloop.h>
DWORD WINAPI DCOPServer::TerminatorThread(void * pParam)
{
DCOPServer * server = (DCOPServer*)pParam;
WaitForSingleObject(server->m_evTerminate,INFINITE);
fprintf( stderr, "[dcopserver_win] Terminate event signaled\n" );
if(!server->shutdown) {
ResetEvent(server->m_evTerminate);
server->slotShutdown();
// Wait for main thread to tell us to realy terminate now
// Need some further event processing to get the timer signals
while(WaitForSingleObject(server->m_evTerminate,100) != WAIT_OBJECT_0)
TQApplication::eventLoop()->processEvents(TQEventLoop::ExcludeUserInput|TQEventLoop::ExcludeSocketNotifiers);
fprintf( stderr, "[dcopserver_win] Terminated event signaled the last time\n" );
}
fprintf( stderr, "[dcopserver_win] Terminate thread teminated\n" );
return 0;
}
BOOL WINAPI DCOPServer::dcopServerConsoleProc(DWORD dwCtrlType)
{
BOOL ret;
switch(dwCtrlType)
{
case CTRL_BREAK_EVENT:
case CTRL_CLOSE_EVENT:
case CTRL_LOGOFF_EVENT:
case CTRL_SHUTDOWN_EVENT:
case CTRL_C_EVENT:
system(findDcopserverShutdown()+" --nokill");
ret = TRUE;
break;
default:
ret = FALSE;
}
return ret;
}
|