003 File Manager
Current Path:
/usr/src/contrib/llvm-project/llvm/lib/Support/Unix
usr
/
src
/
contrib
/
llvm-project
/
llvm
/
lib
/
Support
/
Unix
/
📁
..
📄
COM.inc
(1022 B)
📄
DynamicLibrary.inc
(3.55 KB)
📄
Host.inc
(2.87 KB)
📄
Memory.inc
(8.22 KB)
📄
Path.inc
(39.39 KB)
📄
Process.inc
(13.8 KB)
📄
Program.inc
(16.8 KB)
📄
README.txt
(824 B)
📄
Signals.inc
(21.31 KB)
📄
ThreadLocal.inc
(2.22 KB)
📄
Threading.inc
(9.83 KB)
📄
Unix.h
(3.2 KB)
📄
Watchdog.inc
(839 B)
Editing: Watchdog.inc
//===--- Unix/Watchdog.inc - Unix Watchdog Implementation -------*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // This file provides the generic Unix implementation of the Watchdog class. // //===----------------------------------------------------------------------===// #include "llvm/Config/config.h" #ifdef HAVE_UNISTD_H #include <unistd.h> #endif namespace llvm { namespace sys { Watchdog::Watchdog(unsigned int seconds) { #ifdef HAVE_UNISTD_H alarm(seconds); #endif } Watchdog::~Watchdog() { #ifdef HAVE_UNISTD_H alarm(0); #endif } } }
Upload File
Create Folder