mirror of
git://sourceware.org/git/lvm2.git
synced 2024-12-22 17:35:59 +03:00
bf0378593c
There is a rudimentary make file in place so people can build by hand from 'LVM2/daemons/clogd'. It is not hooked into the main build system yet. I am checking this in to provide people better access to the source code. There is still work to be done to make better use of existing code in the LVM repository. (list.h could be removed in favor of existing list implementations, for example. Logging might also be removed in favor of what is already in the tree.) I will probably defer updating WHATS_NEW_DM until this code is linked into the main build system (unless otherwise instructed).
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__ */
|