prio.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /* $Id$
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * Copyright (C) 1992 - 1997, 2000 Silicon Graphics, Inc.
  8.  * Copyright (C) 2000 by Colin Ngam
  9.  */
  10. #ifndef _ASM_SN_PRIO_H
  11. #define _ASM_SN_PRIO_H
  12. /*
  13.  * Priority I/O function prototypes and macro definitions
  14.  */
  15. typedef long long bandwidth_t;
  16. /* These should be the same as FREAD/FWRITE */
  17. #define PRIO_READ_ALLOCATE 0x1
  18. #define PRIO_WRITE_ALLOCATE 0x2
  19. #define PRIO_READWRITE_ALLOCATE (PRIO_READ_ALLOCATE | PRIO_WRITE_ALLOCATE)
  20. extern int prioSetBandwidth (int /* fd */,
  21.                              int /* alloc_type */,
  22.                              bandwidth_t /* bytes_per_sec */,
  23.                              pid_t * /* pid */);
  24. extern int prioGetBandwidth (int /* fd */,
  25.                              bandwidth_t * /* read_bw */,
  26.                              bandwidth_t * /* write_bw */);
  27. extern int prioLock (pid_t *);
  28. extern int prioUnlock (void);
  29. /* Error returns */
  30. #define PRIO_SUCCESS     0
  31. #define PRIO_FAIL       -1 
  32. #endif /* _ASM_SN_PRIO_H */