mirror of
git://sourceware.org/git/lvm2.git
synced 2025-01-06 17:18:29 +03:00
10 lines
257 B
C
10 lines
257 B
C
|
#ifndef __LINK_MON_DOT_H__
|
||
|
#define __LINK_MON_DOT_H__
|
||
|
|
||
|
int links_register(int fd, char *name, int (*callback)(void *data), void *data);
|
||
|
int links_unregister(int fd);
|
||
|
int links_monitor(void);
|
||
|
int links_issue_callbacks(void);
|
||
|
|
||
|
#endif /* __LINK_MON_DOT_H__ */
|