aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx/qnxdeviceprocesssignaloperation.h
blob: 26b87b72ca842a82a05d8a75ee006d7ab28f4803 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (C) 2016 BlackBerry Limited. All rights reserved.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <remotelinux/remotelinuxsignaloperation.h>

namespace Qnx::Internal {

class QnxDeviceProcessSignalOperation : public RemoteLinux::RemoteLinuxSignalOperation
{
protected:
    explicit QnxDeviceProcessSignalOperation(const ProjectExplorer::IDeviceConstPtr &device);

private:
    QString killProcessByNameCommandLine(const QString &filePath) const override;
    QString interruptProcessByNameCommandLine(const QString &filePath) const override;

    friend class QnxDevice;
};

} // Qnx::Internal