sema.h
上传用户:sddyfurun
上传日期:2007-01-04
资源大小:525k
文件大小:1k
源码类别:

代理服务器

开发平台:

Unix_Linux

  1. /* Copyright (c) 1995,1996,1997 NEC Corporation.  All rights reserved.       */
  2. /*                                                                           */
  3. /* The redistribution, use and modification in source or binary forms of     */
  4. /* this software is subject to the conditions set forth in the copyright     */
  5. /* document ("Copyright") included with this distribution.                   */
  6. /*
  7.  * $Id: sema.h,v 1.11.4.1 1998/07/19 22:49:57 wlu Exp $
  8.  */
  9. #ifndef SEMA_H
  10. #define SEMA_H
  11. #if defined(USE_SYSTEM_SEMAPHORE) || defined(USE_SEMAPHORES)
  12. extern void *semcreate  P((int));
  13. extern void  semdestroy P((void *));
  14. extern int   semreset   P((void *, int));
  15. extern int   semacquire P((void *));
  16. extern int   semrelease P((void *));
  17. #else
  18. #define semcreate(i)    NULL
  19. #define semacquire(s)   0
  20. #define semdestroy(s)
  21. #define semrelease(s)
  22. #define semreset(s, v)  
  23. #endif
  24. #endif