ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libeio/eio.h
(Generate patch)

Comparing libeio/eio.h (file contents):
Revision 1.10 by root, Tue May 13 18:54:52 2008 UTC vs.
Revision 1.11 by root, Tue May 13 19:34:11 2008 UTC

111unsigned int eio_nready (void); /* number of not-yet handled requests */ 111unsigned int eio_nready (void); /* number of not-yet handled requests */
112unsigned int eio_npending (void); /* numbe rof finished but unhandled requests */ 112unsigned int eio_npending (void); /* numbe rof finished but unhandled requests */
113unsigned int eio_nthreads (void); /* number of worker threads in use currently */ 113unsigned int eio_nthreads (void); /* number of worker threads in use currently */
114 114
115/*****************************************************************************/ 115/*****************************************************************************/
116/* high-level request API */ 116/* convinience wrappers */
117 117
118#ifndef EIO_NO_WRAPPERS 118#ifndef EIO_NO_WRAPPERS
119eio_req *eio_nop (int pri, eio_cb cb, void *data); /* does nothing except go through the whole process */ 119eio_req *eio_nop (int pri, eio_cb cb, void *data); /* does nothing except go through the whole process */
120eio_req *eio_busy (eio_tstamp delay, int pri, eio_cb cb, void *data); /* ties a thread for this long, simulating busyness */ 120eio_req *eio_busy (eio_tstamp delay, int pri, eio_cb cb, void *data); /* ties a thread for this long, simulating busyness */
121eio_req *eio_sync (int pri, eio_cb cb, void *data); 121eio_req *eio_sync (int pri, eio_cb cb, void *data);
148eio_req *eio_link (const char *path, const char *new_path, int pri, eio_cb cb, void *data); 148eio_req *eio_link (const char *path, const char *new_path, int pri, eio_cb cb, void *data);
149eio_req *eio_symlink (const char *path, const char *new_path, int pri, eio_cb cb, void *data); 149eio_req *eio_symlink (const char *path, const char *new_path, int pri, eio_cb cb, void *data);
150eio_req *eio_rename (const char *path, const char *new_path, int pri, eio_cb cb, void *data); 150eio_req *eio_rename (const char *path, const char *new_path, int pri, eio_cb cb, void *data);
151#endif 151#endif
152 152
153/*****************************************************************************/
153/* for groups */ 154/* groups */
155
154eio_req *eio_grp (eio_cb cb, void *data); 156eio_req *eio_grp (eio_cb cb, void *data);
155void eio_grp_feed (eio_req *grp, void (*feed)(eio_req *req), int limit); 157void eio_grp_feed (eio_req *grp, void (*feed)(eio_req *req), int limit);
156void eio_grp_limit (eio_req *grp, int limit); 158void eio_grp_limit (eio_req *grp, int limit);
157void eio_grp_add (eio_req *grp, eio_req *req); 159void eio_grp_add (eio_req *grp, eio_req *req);
158void eio_grp_cancel (eio_req *grp); /* cancels all sub requests but not the group */ 160void eio_grp_cancel (eio_req *grp); /* cancels all sub requests but not the group */
159 161
160/* cancel a request as soon fast as possible */ 162/*****************************************************************************/
161void eio_cancel (eio_req *req); 163/* request api */
162/* destroy a request that has never been submitted */
163void eio_destroy (eio_req *req);
164 164
165/* true if the request was cancelled, useful in the invoke callback */ 165/* true if the request was cancelled, useful in the invoke callback */
166#define EIO_CANCELLED(req) ((req)->flags & EIO_FLAG_CANCELLED) 166#define EIO_CANCELLED(req) ((req)->flags & EIO_FLAG_CANCELLED)
167 167
168#define EIO_RESULT(req) ((req)->result) 168#define EIO_RESULT(req) ((req)->result)
169/* returns a pointer to the result buffer allocated by eio */ 169/* returns a pointer to the result buffer allocated by eio */
170#define EIO_BUF(req) ((req)->ptr2) 170#define EIO_BUF(req) ((req)->ptr2)
171#define EIO_STAT_BUF(req) ((EIO_STRUCT_STAT *)EIO_BUF(req)) 171#define EIO_STAT_BUF(req) ((EIO_STRUCT_STAT *)EIO_BUF(req))
172#define EIO_PATH(req) ((char *)(req)->ptr1) 172#define EIO_PATH(req) ((char *)(req)->ptr1)
173 173
174/*****************************************************************************/
175/* low-level request API */
176
177/* must be used to initialise eio_req's */
178#define EIO_INIT(req,prio,finish_cb, destroy_cb) \
179 memset ((req), 0, sizeof (eio_req)); \
180 (req)->pri = (prio) + EIO_PRI_BIAS; \
181 (req)->finish = (finish_cb); \
182 (req)->destroy = (destroy_cb)
183
184/* submit a request for execution */ 174/* submit a request for execution */
185void eio_submit (eio_req *req); 175void eio_submit (eio_req *req);
176/* cancel a request as soon fast as possible, if possible */
177void eio_cancel (eio_req *req);
178/* destroy a request that has never been submitted */
179void eio_destroy (eio_req *req);
186 180
187/*****************************************************************************/ 181/*****************************************************************************/
188/* convinience functions */ 182/* convinience functions */
189 183
190ssize_t eio_sendfile_sync (int ofd, int ifd, off_t offset, size_t count); 184ssize_t eio_sendfile_sync (int ofd, int ifd, off_t offset, size_t count);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines