ast.h 859 B

1234567891011121314151617181920212223242526
  1. /******************************************************************************
  2. *******************************************************************************
  3. **
  4. ** Copyright (C) 2005 Red Hat, Inc. All rights reserved.
  5. **
  6. ** This copyrighted material is made available to anyone wishing to use,
  7. ** modify, copy, or redistribute it subject to the terms and conditions
  8. ** of the GNU General Public License v.2.
  9. **
  10. *******************************************************************************
  11. ******************************************************************************/
  12. #ifndef __ASTD_DOT_H__
  13. #define __ASTD_DOT_H__
  14. void dlm_add_ast(struct dlm_lkb *lkb, int type);
  15. void dlm_del_ast(struct dlm_lkb *lkb);
  16. void dlm_astd_wake(void);
  17. int dlm_astd_start(void);
  18. void dlm_astd_stop(void);
  19. void dlm_astd_suspend(void);
  20. void dlm_astd_resume(void);
  21. #endif