linux_defs.h 698 B

12345678910111213141516171819
  1. /*****************************************************************************
  2. INTEL CORPORATION PROPRIETARY INFORMATION
  3. This software is supplied under the terms of a license agreement or
  4. nondisclosure agreement with Intel Corporation and may not be copied
  5. or disclosed except in accordance with the terms of that agreement.
  6. Copyright(c) 2005-2014 Intel Corporation. All Rights Reserved.
  7. *****************************************************************************/
  8. #include <stdio.h>
  9. #include <string.h>
  10. #include <time.h>
  11. #include <unistd.h>
  12. #define MSDK_FOPEN(FH, FN, M) { FH=fopen(FN,M); }
  13. #define MSDK_SLEEP(X) { usleep(1000*(X)); }
  14. typedef timespec mfxTime;