File: tcmu_runner_priv.h

package info (click to toggle)
tcmu 1.5.4-10
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,104 kB
  • sloc: ansic: 15,893; sh: 83; makefile: 18; xml: 18
file content (22 lines) | stat: -rw-r--r-- 516 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 * Copyright (c) 2018 Red Hat, Inc.
 *
 * This file is licensed to you under your choice of the GNU Lesser
 * General Public License, version 2.1 or any later version (LGPLv2.1 or
 * later), or the Apache License 2.0.
 */

/*
 * This header defines structures private to tcmu-runner, and should not
 * be used by anyone else.
 */

#ifndef __TCMU_RUNNER_PRIV_H
#define __TCMU_RUNNER_PRIV_H

struct tcmu_device;
struct tcmur_handler;

struct tcmur_handler *tcmu_get_runner_handler(struct tcmu_device *dev);

#endif