prio.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

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-2002 Silicon Graphics, Inc. All rights reserved.
  8.  */
  9. #ifndef _ASM_IA64_SN_PRIO_H
  10. #define _ASM_IA64_SN_PRIO_H
  11. #include <linux/types.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_IA64_SN_PRIO_H */