Blame usr/iscsi_timer.h

Packit Service 646995
/*
Packit Service 646995
 * iSCSI timer
Packit Service 646995
 *
Packit Service 646995
 * Copyright (C) 2002 Cisco Systems, Inc.
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 ISCSI_TIMER_H
Packit Service 646995
#define ISCSI_TIMER_H
Packit Service 646995
Packit Service 646995
struct timeval;
Packit Service 646995
Packit Service 646995
extern void iscsi_timer_clear(struct timeval *timer);
Packit Service 646995
extern void iscsi_timer_set(struct timeval *timer, int seconds);
Packit Service 646995
extern int iscsi_timer_expired(struct timeval *timer);
Packit Service 646995
extern int iscsi_timer_msecs_until(struct timeval *timer);
Packit Service 646995
Packit Service 646995
#endif