~bzoltan/kubuntu-packaging/decouple_cmake_plugin

« back to all changes in this revision

Viewing changes to src/tools/win64interrupt/win64interrupt.c

  • Committer: Timo Jyrinki
  • Date: 2013-11-15 12:25:23 UTC
  • mfrom: (1.1.28)
  • Revision ID: timo.jyrinki@canonical.com-20131115122523-i2kyamsu4gs2mu1m
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/****************************************************************************
2
 
**
3
 
** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies).
4
 
** Contact: http://www.qt-project.org/legal
5
 
**
6
 
** This file is part of Qt Creator.
7
 
**
8
 
** Commercial License Usage
9
 
** Licensees holding valid commercial Qt licenses may use this file in
10
 
** accordance with the commercial license agreement provided with the
11
 
** Software or, alternatively, in accordance with the terms contained in
12
 
** a written agreement between you and Digia.  For licensing terms and
13
 
** conditions see http://qt.digia.com/licensing.  For further information
14
 
** use the contact form at http://qt.digia.com/contact-us.
15
 
**
16
 
** GNU Lesser General Public License Usage
17
 
** Alternatively, this file may be used under the terms of the GNU Lesser
18
 
** General Public License version 2.1 as published by the Free Software
19
 
** Foundation and appearing in the file LICENSE.LGPL included in the
20
 
** packaging of this file.  Please review the following information to
21
 
** ensure the GNU Lesser General Public License version 2.1 requirements
22
 
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
23
 
**
24
 
** In addition, as a special exception, Digia gives you certain additional
25
 
** rights.  These rights are described in the Digia Qt LGPL Exception
26
 
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
27
 
**
28
 
****************************************************************************/
29
 
 
30
 
#ifndef _WIN32_WINNT
31
 
#define _WIN32_WINNT 0x0501
32
 
#endif
33
 
 
34
 
#if _WIN32_WINNT < 0x0501
35
 
#error Must target Windows NT 5.0.1 or later for DebugBreakProcess
36
 
#endif
37
 
 
38
 
#include <windows.h>
39
 
#include <stdio.h>
40
 
 
41
 
/* To debug break a 64bit application under Windows, you must call
42
 
 * DebugBreakProcess() from an 64bit apllication. Therefore:
43
 
 *
44
 
 * This code must be compiled with a 64bit compiler
45
 
 * Compile with one of these lines:
46
 
 *  gcc-64bit:
47
 
 *      gcc -o ..\..\..\bin\win64interrupt.exe win64interrupt.c
48
 
 *  cl-64bit:
49
 
 *      cl -o ..\..\..\bin\win64interrupt.exe win64interrupt.c
50
 
 */
51
 
 
52
 
int main(int argc, char *argv[])
53
 
{
54
 
    HANDLE proc;
55
 
    DWORD proc_id;
56
 
    BOOL break_result = FALSE;
57
 
 
58
 
    if (argc != 2) {
59
 
        fprintf(stderr, "Usage: %s <process-id>\n", argv[0]);
60
 
        return 1;
61
 
    }
62
 
 
63
 
    proc_id = strtoul(argv[1], NULL, 0);
64
 
 
65
 
    if (proc_id == 0) {
66
 
        fprintf(stderr, "%s: Invalid argument '%s'\n", argv[0], argv[1]);
67
 
        return 2;
68
 
    }
69
 
 
70
 
    proc = OpenProcess(PROCESS_ALL_ACCESS, FALSE, proc_id);
71
 
    if (!proc) {
72
 
        fprintf(stderr, "%s: OpenProcess() failed, error 0x%lx\n", argv[0], GetLastError());
73
 
        return 3;
74
 
    }
75
 
 
76
 
    break_result = DebugBreakProcess(proc);
77
 
    if (!break_result)
78
 
        fprintf(stderr, "%s: DebugBreakProcess() failed, error 0x%lx\n", argv[0], GetLastError());
79
 
    CloseHandle(proc);
80
 
    return !break_result;
81
 
}