Blame usr/event_poll.h

Packit eace71
/*
Packit eace71
 * iSCSI event poll/loop 
Packit eace71
 *
Packit eace71
 * Copyright (C) 2004 Dmitry Yusupov, Alex Aizman
Packit eace71
 * maintained by open-iscsi@googlegroups.com
Packit eace71
 *
Packit eace71
 * This program is free software; you can redistribute it and/or modify
Packit eace71
 * it under the terms of the GNU General Public License as published
Packit eace71
 * by the Free Software Foundation; either version 2 of the License, or
Packit eace71
 * (at your option) any later version.
Packit eace71
 *
Packit eace71
 * This program is distributed in the hope that it will be useful, but
Packit eace71
 * WITHOUT ANY WARRANTY; without even the implied warranty of
Packit eace71
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Packit eace71
 * General Public License for more details.
Packit eace71
 *
Packit eace71
 * See the file COPYING included with this distribution for more details.
Packit eace71
 */
Packit eace71
#ifndef EVENT_POLL_H
Packit eace71
#define EVENT_POLL_H
Packit eace71
Packit eace71
struct iscsi_ipc;
Packit eace71
struct queue_task;
Packit eace71
Packit eace71
int shutdown_callback(pid_t pid);
Packit eace71
void reap_proc(void);
Packit eace71
void reap_inc(void);
Packit eace71
void reap_track_reload_process(pid_t realod_proc_pid, void (*reload_done_callback)(void));
Packit eace71
void event_loop(struct iscsi_ipc *ipc, int control_fd, int mgmt_ipc_fd);
Packit eace71
void event_loop_exit(struct queue_task *qtask);
Packit eace71
Packit eace71
#endif