/******************************************************************************1*******************************************************************************2**3** Copyright (C) 2005-2007 Red Hat, Inc. All rights reserved.4**5** This copyrighted material is made available to anyone wishing to use,6** modify, copy, or redistribute it subject to the terms and conditions7** of the GNU General Public License v.2.8**9*******************************************************************************10******************************************************************************/1112#ifndef __REQUESTQUEUE_DOT_H__13#define __REQUESTQUEUE_DOT_H__1415void dlm_add_requestqueue(struct dlm_ls *ls, int nodeid, struct dlm_message *ms);16int dlm_process_requestqueue(struct dlm_ls *ls);17void dlm_wait_requestqueue(struct dlm_ls *ls);18void dlm_purge_requestqueue(struct dlm_ls *ls);1920#endif21222324