/******************************************************************************1*******************************************************************************2**3** Copyright (C) 2005-2010 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 __ASTD_DOT_H__13#define __ASTD_DOT_H__1415void dlm_del_ast(struct dlm_lkb *lkb);16int dlm_add_lkb_callback(struct dlm_lkb *lkb, uint32_t flags, int mode,17int status, uint32_t sbflags, uint64_t seq);18int dlm_rem_lkb_callback(struct dlm_ls *ls, struct dlm_lkb *lkb,19struct dlm_callback *cb, int *resid);20void dlm_add_ast(struct dlm_lkb *lkb, uint32_t flags, int mode, int status,21uint32_t sbflags);2223void dlm_astd_wake(void);24int dlm_astd_start(void);25void dlm_astd_stop(void);26void dlm_astd_suspend(void);27void dlm_astd_resume(void);2829#endif30313233