This file is indexed.

/usr/lib/s9fes/help/sys_select is in scheme9 2010.11.13-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
S9 EXT  (sys:select list1 list2 list3)  ==>  integer | #f

Check whether any of the input file descriptors listed in LIST2
or output file descriptors listed in LIST3 are ready for reading
or writing respectively. Return the total number of file descriptors
that are ready. When no descriptors are ready at all, return #F.

LIST1 specifies the maximum time to wait for the file descriptors to
become ready. It is a two-element list with the following members:

        (seconds microseconds)

When '() is passed in the place of LIST1, SYS:SELECT will wait
indefinitely. When '(0 0) is passed to it, it will return immediately,
effectively implementing polling.

(sys:select '(0 0) '() '())  ==>  #f