README.FreeBSD
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:1k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. Here are some notes from Yasuhito FUTATSUKI <futatuki@fureai.or.jp> 
  2. (maintainer of cdrdao's FreeBSD port).
  3. Real Time Scheduling
  4. --------------------
  5. In the LINT configuration file in which all devices' configurations
  6. and all available kernel options is described, there are three
  7. options as follows:
  8.     options             "P1003_1B"
  9.     options             "_KPOSIX_PRIORITY_SCHEDULING"
  10.     options             "_KPOSIX_VERSION=199309L"
  11. If the kernel has been built with these options, soft real time
  12. scheduling code based on "rtpiro" are built in the kernel as a
  13. POSIX scheduling system call implementation. OTOH if the kernel 
  14. has been built without them, sched_*() system calls' entities
  15. are not compiled in it, so sche_*() calls always fail with
  16. logging message such as
  17.     cmd cdrdao pid 1234 tried to use non-present sched_getparam
  18. etc.
  19. These options are not in the GENERIC kernel.