Ticket #13333: add_thread.patch

File add_thread.patch, 904 bytes (added by Mike Bibbings, 6 years ago)

add_thread patch

  • mythtv/libs/libmythtv/recorders/ExternalStreamHandler.cpp

    diff --git a/mythtv/libs/libmythtv/recorders/ExternalStreamHandler.cpp b/mythtv/libs/libmythtv/recorders/ExternalStreamHandler.cpp
    index edbe2183c4..bbeda34ebf 100644
    a b  
    11// -*- Mode: c++ -*-
    22
    33// POSIX headers
     4#include <thread>
    45#include <iostream>
    56#include <fcntl.h>
    67#include <unistd.h>
  • mythtv/programs/mythexternrecorder/MythExternRecApp.cpp

    diff --git a/mythtv/programs/mythexternrecorder/MythExternRecApp.cpp b/mythtv/programs/mythexternrecorder/MythExternRecApp.cpp
    index 198a375aff..5ac4f82347 100644
    a b  
    1818 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
    1919 */
    2020
     21#include <thread>
    2122#include "commandlineparser.h"
    2223#include "MythExternRecApp.h"
    2324