1*61145dc2SMartin Matuska // SPDX-License-Identifier: CDDL-1.0 2eda14cbcSMatt Macy /* 3180f8225SMatt Macy * This file is part of the ZFS Event Daemon (ZED). 4180f8225SMatt Macy * 5eda14cbcSMatt Macy * Developed at Lawrence Livermore National Laboratory (LLNL-CODE-403049). 6eda14cbcSMatt Macy * Copyright (C) 2013-2014 Lawrence Livermore National Security, LLC. 716038816SMartin Matuska * Refer to the OpenZFS git commit log for authoritative copyright attribution. 8eda14cbcSMatt Macy * 9eda14cbcSMatt Macy * The contents of this file are subject to the terms of the 10eda14cbcSMatt Macy * Common Development and Distribution License Version 1.0 (CDDL-1.0). 11eda14cbcSMatt Macy * You can obtain a copy of the license from the top-level file 12eda14cbcSMatt Macy * "OPENSOLARIS.LICENSE" or at <http://opensource.org/licenses/CDDL-1.0>. 13eda14cbcSMatt Macy * You may not use this file except in compliance with the license. 14eda14cbcSMatt Macy */ 15eda14cbcSMatt Macy 16eda14cbcSMatt Macy #ifndef ZED_EXEC_H 17eda14cbcSMatt Macy #define ZED_EXEC_H 18eda14cbcSMatt Macy 19eda14cbcSMatt Macy #include <stdint.h> 20eda14cbcSMatt Macy #include "zed_strings.h" 2116038816SMartin Matuska #include "zed_conf.h" 2216038816SMartin Matuska 2316038816SMartin Matuska void zed_exec_fini(void); 24eda14cbcSMatt Macy 25eda14cbcSMatt Macy int zed_exec_process(uint64_t eid, const char *class, const char *subclass, 2616038816SMartin Matuska struct zed_conf *zcp, zed_strings_t *envs); 27eda14cbcSMatt Macy 28eda14cbcSMatt Macy #endif /* !ZED_EXEC_H */ 29