mirror of
https://github.com/ceph/ceph
synced 2025-02-09 03:49:38 +00:00
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@2100 29311d96-e01e-0410-9327-a35deaab8ce9
16 lines
235 B
C
16 lines
235 B
C
#ifndef __FS_CEPH_POLL_H
|
|
#define __FS_CEPH_POLL_H
|
|
|
|
int start_poll(void *);
|
|
|
|
/*
|
|
* May use, probably not..
|
|
*/
|
|
struct ceph_poll_task {
|
|
struct task_struct *poll_task;
|
|
struct list_head poll_list;
|
|
u64 timeout;
|
|
};
|
|
|
|
#endif
|