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

  1. /* $Id: lxsemaphor.c,v 1.2 2002/04/26 23:09:24 smilcke Exp $ */
  2.  
  3. /*
  4.  * semaphor.c
  5.  * Autor:               Stefan Milcke
  6.  * Erstellt am:         08.11.2001
  7.  * Letzte Aenderung am: 10.11.2001
  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_MUTEX ---------------------------------
  16. void init_MUTEX (struct semaphore *sem)
  17. {
  18. }
  19.  
  20. //----------------------------- init_MUTEX_LOCKED ------------------------------
  21. void init_MUTEX_LOCKED (struct semaphore *sem)
  22. {
  23. }
  24.  
  25. //------------------------------------ down ------------------------------------
  26. void down(struct semaphore * sem)
  27. {
  28.  
  29. }
  30.  
  31. //------------------------------------- up -------------------------------------
  32. void up(struct semaphore * sem)
  33. {
  34.  
  35. }
  36.