File indexing completed on 2024-04-21 05:26:43

0001 /*
0002     SPDX-FileCopyrightText: 2019 Christoph Roick <chrisito@gmx.de>
0003 
0004     SPDX-License-Identifier: GPL-2.0-or-later
0005 */
0006 #ifndef PTRACER_H
0007 #define PTRACER_H
0008 
0009 #include <QtGlobal>
0010 
0011 /** On Linux, tell the process to allow the debugger to attach to it */
0012 void setPtracer(qint64 debuggerpid, qint64 debuggeepid);
0013 
0014 #endif