1 //===-- OpenBSDSignals.cpp --------------------------------------*- C++ -*-===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #include "OpenBSDSignals.h" 11 12 using namespace lldb_private; 13 14 OpenBSDSignals::OpenBSDSignals() : UnixSignals() { Reset(); } 15 16 void OpenBSDSignals::Reset() { 17 UnixSignals::Reset(); 18 19 // SIGNO NAME SUPPRESS STOP NOTIFY DESCRIPTION 20 // ====== ============ ======== ====== ====== 21 // =================================================== 22 AddSignal(32, "SIGTHR", false, false, false, "thread library AST"); 23 } 24