The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/openzfs/cmd/zed/zed_log.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

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

Cache object: 9148c888a6d48d0d083c561c810273fc


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.