home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / lxapi32.zip / Lib32 / lxwaitq.c < prev    next >
C/C++ Source or Header  |  2002-04-26  |  893b  |  34 lines

  1. /* $Id: lxwaitq.c,v 1.2 2002/04/26 23:09:26 smilcke Exp $ */
  2.  
  3. /*
  4.  * waitq.c
  5.  * Autor:               Stefan Milcke
  6.  * Erstellt am:         08.11.2001
  7.  * Letzte Aenderung am: 11.01.2002
  8.  *
  9. */
  10. #include <linux/init.h>
  11. #include <linux/poll.h>
  12. #include <asm/uaccess.h>
  13. #include <asm/hardirq.h>
  14.  
  15. //---------------------------- init_waitqueue_head -----------------------------
  16. void init_waitqueue_head(wait_queue_head_t *q)
  17. {
  18. }
  19.  
  20. //------------------------------- add_wait_queue -------------------------------
  21. void add_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
  22. {
  23. }
  24.  
  25. //-------------------------- add_wait_queue_exclusive --------------------------
  26. void add_wait_queue_exclusive(wait_queue_head_t *q)
  27. {
  28. }
  29.  
  30. //----------------------------- remove_wait_queue ------------------------------
  31. void remove_wait_queue(wait_queue_head_t *q, wait_queue_t * wait)
  32. {
  33. }
  34.