acrn-hypervisor/misc/debug_tools/acrn_crashlog/acrnprobe/include/channels.h
Xie, nanlin 0ab5db9cf9 tools: rename and category content into debug tools and services
1. Rename folder name with "_"
2. Category acrn_crashlog, acrn_log, acrn_trace into debug_tools folder and acrn_bridge, life_mngr, acrn_manager into services.

Tracked-On: #5644
Signed-off-by: Xie, nanlin <nanlin.xie@intel.com>
2021-01-27 11:08:28 +08:00

25 lines
512 B
C

/*
* Copyright (C) 2018 Intel Corporation
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef _CHANNELS_H
#define _CHANNELS_H
#define BASE_DIR_MASK (IN_CLOSE_WRITE | IN_DELETE_SELF | IN_MOVE_SELF)
#define UPTIME_MASK IN_CLOSE_WRITE
#define MAXEVENTS 15
#define HEART_RATE (6 * 1000) /* ms */
struct channel_t {
char *name;
int fd;
void (*channel_fn)(struct channel_t *);
};
extern int create_detached_thread(pthread_t *pid,
void *(*fn)(void *), void *arg);
extern int init_channels(void);
#endif