1*eda14cbcSMatt Macy /* 2*eda14cbcSMatt Macy * This file is part of the ZFS Event Daemon (ZED) 3*eda14cbcSMatt Macy * for ZFS on Linux (ZoL) <http://zfsonlinux.org/>. 4*eda14cbcSMatt Macy * Developed at Lawrence Livermore National Laboratory (LLNL-CODE-403049). 5*eda14cbcSMatt Macy * Copyright (C) 2013-2014 Lawrence Livermore National Security, LLC. 6*eda14cbcSMatt Macy * Refer to the ZoL git commit log for authoritative copyright attribution. 7*eda14cbcSMatt Macy * 8*eda14cbcSMatt Macy * The contents of this file are subject to the terms of the 9*eda14cbcSMatt Macy * Common Development and Distribution License Version 1.0 (CDDL-1.0). 10*eda14cbcSMatt Macy * You can obtain a copy of the license from the top-level file 11*eda14cbcSMatt Macy * "OPENSOLARIS.LICENSE" or at <http://opensource.org/licenses/CDDL-1.0>. 12*eda14cbcSMatt Macy * You may not use this file except in compliance with the license. 13*eda14cbcSMatt Macy */ 14*eda14cbcSMatt Macy 15*eda14cbcSMatt Macy #ifndef ZED_LOG_H 16*eda14cbcSMatt Macy #define ZED_LOG_H 17*eda14cbcSMatt Macy 18*eda14cbcSMatt Macy #include <syslog.h> 19*eda14cbcSMatt Macy 20*eda14cbcSMatt Macy void zed_log_init(const char *identity); 21*eda14cbcSMatt Macy 22*eda14cbcSMatt Macy void zed_log_fini(void); 23*eda14cbcSMatt Macy 24*eda14cbcSMatt Macy void zed_log_pipe_open(void); 25*eda14cbcSMatt Macy 26*eda14cbcSMatt Macy void zed_log_pipe_close_reads(void); 27*eda14cbcSMatt Macy 28*eda14cbcSMatt Macy void zed_log_pipe_close_writes(void); 29*eda14cbcSMatt Macy 30*eda14cbcSMatt Macy void zed_log_pipe_wait(void); 31*eda14cbcSMatt Macy 32*eda14cbcSMatt Macy void zed_log_stderr_open(int priority); 33*eda14cbcSMatt Macy 34*eda14cbcSMatt Macy void zed_log_stderr_close(void); 35*eda14cbcSMatt Macy 36*eda14cbcSMatt Macy void zed_log_syslog_open(int facility); 37*eda14cbcSMatt Macy 38*eda14cbcSMatt Macy void zed_log_syslog_close(void); 39*eda14cbcSMatt Macy 40*eda14cbcSMatt Macy void zed_log_msg(int priority, const char *fmt, ...); 41*eda14cbcSMatt Macy 42*eda14cbcSMatt Macy void zed_log_die(const char *fmt, ...); 43*eda14cbcSMatt Macy 44*eda14cbcSMatt Macy #endif /* !ZED_LOG_H */ 45