osl.h
上传用户:yuanda199
上传日期:2022-06-26
资源大小:412k
文件大小:1k
源码类别:

VxWorks

开发平台:

C/C++

  1. /*
  2.     EXTERNAL SOURCE RELEASE on 12/03/2001 3.0 - Subject to change without notice.
  3. */
  4. /*
  5.     Copyright 2001, Broadcom Corporation
  6.     All Rights Reserved.
  7.     
  8.     This is UNPUBLISHED PROPRIETARY SOURCE CODE of Broadcom Corporation;
  9.     the contents of this file may not be disclosed to third parties, copied or
  10.     duplicated in any form, in whole or in part, without the prior written
  11.     permission of Broadcom Corporation.
  12. */
  13. /*
  14.  * OS Independent Layer
  15.  * 
  16.  * Copyright(c) 2001 Broadcom Corp.
  17.  * $Id: osl.h,v 1.1 Broadcom SDK $
  18.  */
  19. #ifndef _osl_h_
  20. #define _osl_h_
  21. #ifdef vxworks
  22. #include <vx_osl.h>
  23. #elif linux
  24. #include <linux_osl.h>
  25. #elif V2_HAL
  26. #include <v2hal_osl.h>
  27. #elif PMON
  28. #include <pmon_osl.h>
  29. #elif defined(NDIS)
  30. #include <ndis_osl.h>
  31. #else
  32. #error "Unsupported OSL requested"
  33. #endif
  34. #endif /* _osl_h_ */