Blame usr/event_poll.h

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