/******************************************************************************1*******************************************************************************2**3** Copyright (C) 2005-2008 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 __MEMBER_DOT_H__13#define __MEMBER_DOT_H__1415int dlm_ls_stop(struct dlm_ls *ls);16int dlm_ls_start(struct dlm_ls *ls);17void dlm_clear_members(struct dlm_ls *ls);18void dlm_clear_members_gone(struct dlm_ls *ls);19int dlm_recover_members(struct dlm_ls *ls, struct dlm_recover *rv,int *neg_out);20int dlm_is_removed(struct dlm_ls *ls, int nodeid);21int dlm_is_member(struct dlm_ls *ls, int nodeid);2223#endif /* __MEMBER_DOT_H__ */24252627