2020-01-16 16:38:04 +00:00
|
|
|
//===-- SysSignal.h ---------------------------------------------*- C++ -*-===//
|
2019-07-26 19:53:28 +00:00
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2020-01-16 16:38:04 +00:00
|
|
|
// Created by Greg Clayton on 6/18/07.
|
2019-07-26 19:53:28 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2020-01-16 16:38:04 +00:00
|
|
|
#ifndef __SysSignal_h__
|
|
|
|
#define __SysSignal_h__
|
|
|
|
|
|
|
|
class SysSignal {
|
|
|
|
public:
|
|
|
|
static const char *Name(int signal);
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|