Home | History | Annotate | Line # | Download | only in linux
async.h revision 1.3
      1 #ifndef _LINUX_ASYNC_H_
      2 #define _LINUX_ASYNC_H_
      3 
      4 #include <sys/param.h> /* panic */
      5 
      6 typedef struct async_cookie_t {
      7 
      8 } async_cookie_t;
      9 
     10 static inline void
     11 async_schedule(void (*func)(void *, async_cookie_t), void *cookie)
     12 {
     13 	panic("XXX defer function");
     14 }
     15 
     16 #endif /* _LINUX_ASYNC_H_ */
     17