Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/openzfs/cmd/zed/zed_disk_event.h
48380 views
1
// SPDX-License-Identifier: CDDL-1.0
2
/*
3
* CDDL HEADER START
4
*
5
* The contents of this file are subject to the terms of the
6
* Common Development and Distribution License Version 1.0 (CDDL-1.0).
7
* You can obtain a copy of the license from the top-level file
8
* "OPENSOLARIS.LICENSE" or at <http://opensource.org/licenses/CDDL-1.0>.
9
* You may not use this file except in compliance with the license.
10
*
11
* CDDL HEADER END
12
*/
13
14
/*
15
* Copyright (c) 2016, Intel Corporation.
16
*/
17
18
#ifndef ZED_DISK_EVENT_H
19
#define ZED_DISK_EVENT_H
20
21
#ifdef __cplusplus
22
extern "C" {
23
#endif
24
25
extern int zed_disk_event_init(void);
26
extern void zed_disk_event_fini(void);
27
28
#ifdef __cplusplus
29
}
30
#endif
31
32
#endif /* !ZED_DISK_EVENT_H */
33
34